Module Deferred.Or_error
include Async_kernel.Deferred.Or_error
module Deferred = Async_kernel__.Deferred1
type 'a t
= 'a Core_kernel.Or_error.t Deferred.t
The applicative operations match the behavior of the applicative operations in Or_error
. This means that all
and all_unit
are equivalent to combine_errors
and combine_errors_unit
respectively.
include Core_kernel.Applicative.S with type 'a t := 'a t
val apply : ('a -> 'b) t -> 'a t -> 'b t
val map2 : 'a t -> 'b t -> f:('a -> 'b -> 'c) -> 'c t
val map3 : 'a t -> 'b t -> 'c t -> f:('a -> 'b -> 'c -> 'd) -> 'd t
val all : 'a t list -> 'a list t
val all_unit : unit t list -> unit t
module Applicative_infix : Base__.Applicative_intf.Applicative_infix with type 'a t := 'a t
return x = Deferred.return (Ok x)
*
include Core_kernel.Monad.S with type 'a t := 'a t
include Base__.Monad_intf.S_without_syntax with type 'a t := 'a t
module Monad_infix : Base__.Monad_intf.Infix with type 'a t := 'a t
val return : 'a -> 'a t
return v
returns the (trivial) computation that returns v.
val fail : Core_kernel.Error.t -> _ t
fail error = Deferred.return (Error error)
*
val ok_exn : 'a t -> 'a Deferred.t
These functions are direct analogs of the corresponding
Core.Or_error
functions.
val of_exn : exn -> _ t
val of_exn_result : ('a, exn) Core_kernel.Result.t Deferred.t -> 'a t
val error : string -> 'a -> ('a -> Core_kernel.Sexp.t) -> _ t
val error_s : Core_kernel.Sexp.t -> _ t
val error_string : string -> _ t
val errorf : ('a, unit, string, _ t) Core_kernel.format4 -> 'a
val tag : 'a t -> tag:string -> 'a t
val tag_s : 'a t -> tag:Core_kernel.Sexp.t -> 'a t
val tag_arg : 'a t -> string -> 'b -> ('b -> Core_kernel.Sexp.t) -> 'a t
val unimplemented : string -> _ t
val combine_errors : 'a t list -> 'a list t
val combine_errors_unit : unit t list -> unit t
val filter_ok_at_least_one : 'a t list -> 'a list t
val find_map_ok : 'a list -> f:('a -> 'b t) -> 'b t
find_map_ok l ~f
returns the first value inl
for whichf
returnsOk
, otherwise it returns the same error ascombine_errors (Deferred.List.map l ~f)
.
val ok_unit : unit t
ok_unit = return ()
val try_with : ?extract_exn:bool -> ?run:[ `Now | `Schedule ] -> ?here:Stdlib.Lexing.position -> ?name:string -> (unit -> 'a Deferred.t) -> 'a t
try_with f
catches exceptions thrown byf
and returns them in the Result.t as an Error.t.try_with_join
is liketry_with
, except thatf
can throw exceptions or return anError
directly, without ending up with a nested error; it is equivalent totry_with f >>| Result.join
.The option
extract_exn
is passed along toMonitor.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 -> ?run:[ `Now | `Schedule ] -> ?here:Stdlib.Lexing.position -> ?name:string -> (unit -> 'a t) -> 'a t
module List = Async_kernel__.Deferred_or_error.List
All of the
List
functions that take ahow
argument treat it the following way:
val repeat_until_finished : 'state -> ('state -> [ `Repeat of 'state | `Finished of 'result ] t) -> 'result t
repeat_until_finished initial_state f
works the just likeDeferred.repeat_until_finished
but with theDeferred.Or_error
monad. Iff
returns anOr_error.Error
the loop terminates and returns.
module Expect_test_config = Async__.Deferred_or_error_expect_test_config