Eager_deferred.UseSourceIntended usage is to open Eager_deferred.Use to shadow operations from the non-eager world and rebind them to their eager counterparts.
include Core.Monad.Infix with type 'a t := 'a Async_kernel.Deferred.tinclude module type of Deferred.Let_syntaxt >>= 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.
t >>| f is t >>= (fun a -> return (f a)).
val (>>=?) :
('a, 'e) Core.Result.t Async_kernel.Deferred.t ->
('a -> ('b, 'e) Core.Result.t Async_kernel.Deferred.t) ->
('b, 'e) Core.Result.t Async_kernel.Deferred.tval (>>|?) :
('a, 'e) Core.Result.t Async_kernel.Deferred.t ->
('a -> 'b) ->
('b, 'e) Core.Result.t Async_kernel.Deferred.t