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