package anycache

  1. Overview
  2. Docs
type +'a t

the type for deferred computation with result of type 'a

type ('a, 'b) result =
  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.