package anycache-async

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

the type for deferred computation with result of type 'a

type ('a, 'b) result = ('a, 'b) Core_kernel.Std.Result.t =
  1. | Ok of 'a
  2. | Error of 'b
    (*

    result type for backward compatibility

    *)
val return : 'a -> 'a t

a successfull result

val fail : exn -> 'a t

an error

val (>>?) : 'a t -> (('a, exn) result -> 'b t) -> 'b t

v >>= g chains the computation of v and the function g. When the computation of v finishes g is invoked with its result, or error. This allows to post-process the result or perform error handling.