Module type Kxclib.ResultOfS'

include ResultOfS
type 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
val get : 'x t -> 'x