You can search for identifiers within the package.
in-package search v0.2.0
Module to represent the type int
int
type t = int
val compare : t -> t -> int
compare i j compare the two numbers i and j.
compare i j
i
j
val iterate : t -> ('a -> 'a) -> 'a -> 'a
iterate n f start iterates the function f n times on the start value start.
iterate n f start
f
n
start