package async_kernel
- Overview
 - No Docs
 
You can search for identifiers within the package.
in-package search v0.2.0
Install
    
    dune-project
 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.tinclude 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 ... 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.
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 ... endThese are convenient to have in scope when programming with a monad:
val fail : Core_kernel.Error.t -> _ tval ok_unit : unit tval ok_exn : 'a t -> 'a Async_kernel.Deferred.tval of_exn : exn -> _ tval of_exn_result : 
  ('a, exn) Core_kernel.Result.t Async_kernel.Deferred.t ->
  'a tval error : string -> 'a -> ('a -> Core_kernel.Sexp.t) -> _ tval error_s : Core_kernel.Sexp.t -> _ tval error_string : string -> _ tval errorf : ('a, unit, string, _ t) Core_kernel.format4 -> 'aval tag_s : 'a t -> tag:Core_kernel.Sexp.t -> 'a tval tag_arg : 'a t -> string -> 'b -> ('b -> Core_kernel.Sexp.t) -> 'a tval unimplemented : string -> _ tval try_with : 
  ?extract_exn:bool ->
  ?run:[ `Now | `Schedule ] ->
  ?here:Lexing.position ->
  ?name:string ->
  (unit -> 'a Async_kernel.Deferred.t) ->
  'a tNote 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 tNote 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