package caldav

  1. Overview
  2. Docs
type +'a t

The type of a blocking computation

val (>>=) : 'a t -> ('a -> 'b t) -> 'b t

The monadic bind operator for the type 'a t. m >>= f will pass the result of m to f, once the result is determined.

val return : 'a -> 'a t

return a creates a value of type 'a t that is already determined.