Module Stdune.Result

Result type

type ('a, 'error) t = ('a'error) Dune_caml.result =
| Ok of 'a
| Error of 'error
val ok : 'a -> ('a_) t
val is_ok : (__) t -> bool
val is_error : (__) t -> bool
val ok_exn : ('a, exn) t -> 'a
val try_with : (unit -> 'a) -> ('a, exn) t
module O : sig ... end
val map : ('a'error) t -> f:('a -> 'b) -> ('b'error) t
val bind : ('a'error) t -> f:('a -> ('b'error) t) -> ('b'error) t
val map_error : ('a'error1) t -> f:('error1 -> 'error2) -> ('a'error2) t
val errorf : ('a, unit, string, (_, string) t) Stdlib.format4 -> 'a

Produce Error <message>

type ('a, 'error) result = ('a'error) t

For compatibility with some other code

module List : sig ... end