You can search for identifiers within the package.
in-package search v0.2.0
val (--) : int -> int -> int t
Integer range, inclusive
val (--^) : int -> int -> int t
Integer range, exclusive in the right bound
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
Monadic bind operator
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
Infix map operator
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
val (<*>) : ('a -> 'b) t -> 'a t -> 'b t