You can search for identifiers within the package.
in-package search v0.2.0
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
synonym of bind
bind
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
synonum of fmap, with the flipped arguments
fmap
Applicative style binops
val (^<$>) : ('a -> 'b) -> 'a t -> 'b t
same as map, <$> in Haskell
val (/<*>) : ('a -> 'b) t -> 'a t -> 'b t
<*> in Haskell