package async_kernel
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=55a32c8b8e6aaaecb8357644515884367ec99b703fe8f984212b714a0e554c65
md5=d12b61a3f95325a511c50964bc9c819e
doc/async_kernel.eager_deferred/Eager_deferred/Or_error/index.html
Module Eager_deferred.Or_error
type 'a t = 'a Core_kernel.Or_error.t Async_kernel.Deferred.t
include Core_kernel.Monad.S with type 'a t := 'a t
t >>= f
returns a computation that sequences the computations represented by two monad elements. The resulting computation first does t
to yield a value v
, and then runs the computation returned by f v
.
module Monad_infix : sig ... end
val return : 'a -> 'a t
return v
returns the (trivial) computation that returns v.
ignore_m t
is map t ~f:(fun _ -> ())
. ignore_m
used to be called ignore
, but we decided that was a bad name, because it shadowed the widely used Caml.ignore
. Some monads still do let ignore = ignore_m
for historical reasons.
Like all
, but ensures that every monadic value in the list produces a unit value, all of which are discarded rather than being collected into a list.
module Let_syntax : sig ... end
These are convenient to have in scope when programming with a monad:
val fail : Core_kernel.Error.t -> _ t
val ok_unit : unit t
val ok_exn : 'a t -> 'a Async_kernel.Deferred.t
val of_exn : exn -> _ t
val of_exn_result :
('a, exn) Core_kernel.Result.t Async_kernel.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_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 try_with :
?extract_exn:bool ->
?run:[ `Now | `Schedule ] ->
?here:Lexing.position ->
?name:string ->
(unit -> 'a Async_kernel.Deferred.t) ->
'a t
Note that try_with f
is eager only in the Ok
case.
val try_with_join :
?extract_exn:bool ->
?run:[ `Now | `Schedule ] ->
?here:Lexing.position ->
?name:string ->
(unit -> 'a t) ->
'a t
Note that try_with_join f
is eager only when no exception is raised by f
.
module List :
Async_kernel.Monad_sequence.S
with type 'a monad := 'a t
with type 'a t := 'a list