Module Make.ErrMSource

!ErrM defines monad to use for the implementation and combination of RPC functions

Sourceval return : 'a -> ('a, 'b) T.resultb
Sourceval return_err : 'b -> ('a, 'b) T.resultb
Sourceval checked_bind : ('a, 'b) T.resultb -> ('a -> ('c, 'd) T.resultb) -> ('b -> ('c, 'd) T.resultb) -> ('c, 'd) T.resultb
Sourceval bind : ('a, 'b) T.resultb -> ('a -> ('c, 'b) T.resultb) -> ('c, 'b) T.resultb
Sourceval (>>=) : ('a, 'b) T.resultb -> ('a -> ('c, 'b) T.resultb) -> ('c, 'b) T.resultb