module Or_error: Async_or_error
type'a
t ='a Core.Std.Or_error.t Deferred.t
include Monad.S
return x = Deferred.return (Ok x)
*val fail : Core.Std.Error.t -> 'a t
fail error = Deferred.return (Error error)
*val ok_exn : 'a t -> 'a Deferred.t
Core.Or_error
functions.val of_exn : exn -> 'a t
val of_exn_result : ('a, exn) Core.Std.Result.t Deferred.t -> 'a t
val error : string -> 'a -> ('a -> Core.Std.Sexp.t) -> 'b t
val error_string : string -> 'a t
val unimplemented : string -> 'a t
val combine_errors : 'a t list -> 'a list t
val combine_errors_unit : unit t list -> unit t
val ok_unit : unit t
ok_unit = return ()
val try_with : ?extract_exn:bool ->
?name:string -> (unit -> 'a Deferred.t) -> 'a t
try_with f
catches exceptions thrown by f
and returns them in the Result.t as an
Error.t. try_with_join
is like try_with
, except that f
can throw exceptions or
return an Error
directly, without ending up with a nested error; it is equivalent to
try_with f >>| Result.join
.
The option extract_exn
is passed along to Monitor.try_with ?extract_exn
and
specifies whether or not the monitor exn wrapper should be skipped (extract_exn:true
or kept (extract_exn:false
).
val try_with_join : ?extract_exn:bool ->
?name:string -> (unit -> 'a t) -> 'a t
module List:Deferred_intf.Monad_sequence
with type 'a monad := 'a t
with type 'a t := 'a list