or_error.ml
odoc
odoc.document
odoc.examples
odoc.html
odoc.latex
odoc.loader
odoc.manpage
odoc.model
odoc.model_desc
odoc.ocamlary
odoc.odoc
odoc.xref2
odoc.xref_test
1 2 3 4 5 type ('a, 'e) result = ('a, 'e) Result.result = Ok of 'a | Error of 'e type msg = [ `Msg of string ] let ( >>= ) r f = match r with Ok v -> f v | Error _ as e -> e
1 2 3 4 5
type ('a, 'e) result = ('a, 'e) Result.result = Ok of 'a | Error of 'e type msg = [ `Msg of string ] let ( >>= ) r f = match r with Ok v -> f v | Error _ as e -> e