You can search for identifiers within the package.
in-package search v0.2.0
type time
val time : (unit -> 'a Lwt.t) -> (time * 'a) Lwt.t
time f computes f () returns the time taken to compute and the result
time f
f ()
val time_and_tick : ('a -> Z.t Lwt.t) -> ('a -> 'a Lwt.t) -> 'a -> (time * Z.t * 'a) Lwt.t
time_and_tick get_tick f a computes f a and returns the time taken, the number of ticks and the result
time_and_tick get_tick f a
f a
val zero : time
val to_seconds : time -> float