You can search for identifiers within the package.
in-package search v0.2.0
Monadic type, with two type parameters.
type ('a, 'b) t
val return : 'a -> ('a, 'b) t
return a lifts the value a into the monadic context.
return a
a
val bind : ('a, 'b) t -> ('a -> ('c, 'b) t) -> ('c, 'b) t
bind ma fn applies the monadic function fn to the monadic value ma.
bind ma fn
fn
ma