val create : (unit -> 'a Deferred.t) -> 'a tcreate f creates a new lazy deferred that will call f when it is forced.
val force : 'a t -> 'a Core_kernel.Or_error.t Deferred.tforce t forces evaluation of t and returns a deferred that becomes determined when the deferred computation becomes determined or raises.
val force_exn : 'a t -> 'a Deferred.tval wait : 'a t -> 'a Core_kernel.Or_error.t Deferred.twait t and wait_exn t waits for t to be forced. If no one ever calls force t, they will wait forever.
val wait_exn : 'a t -> 'a Deferred.tbind t f in the lazy-deferred monad creates a computation that, when forced, will force t, apply f to the result, and then force the result of that.
include Core_kernel.Monad 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 ... endval return : 'a -> 'a treturn 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.
module Let_syntax : sig ... endval bind' : 'a t -> ('a -> 'b Deferred.t) -> 'b tbind' differs from bind in that the supplied function produces an 'a Deferred.t rather than an 'a t.
val peek : 'a t -> 'a Core_kernel.Or_error.t optionpeek t = Deferred.peek (wait t)
val peek_exn : 'a t -> 'a optionval is_determined : _ t -> boolval is_forced : _ t -> bool