You can search for identifiers within the package.
in-package search v0.2.0
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.
'a t
m >>= f
m
f
val return : 'a -> 'a t
return a creates a value of type 'a t that is already determined.
return a