Module Kxclib.ResultOf

Parameters

module E : sig ... end

Signature

type err = E.err
exception Error_result of err
type 'x t = ('x, err) Stdlib.result
val bind : 'x t -> ('x -> 'y t) -> 'y t
val return : 'x -> 'x t
val error : err -> _ t