You can search for identifiers within the package.
in-package search v0.2.0
include Functor.S
type 'a t
val map : ('a -> 'b) -> 'a t -> 'b t
val pure : 'a -> 'a t
val apply : ('a -> 'b) t -> (unit -> 'a t) -> 'b t
The evaluation of the second argument is delayed so that it can be skipped if not necessary: it allows short-circuits with forall, exists, etc.
forall
exists