You can search for identifiers within the package.
in-package search v0.2.0
Wrapper allowing for asynchronous test functions (Lwt and such).
type 'a t = 'a Lwt.t
val return : 'a -> 'a t
val bind : 'a t -> ('a -> 'b t) -> 'b t
val catch : (unit -> 'a t) -> (exn -> Printexc.raw_backtrace -> 'a t) -> 'a t
module Operators : sig ... end
val protect : (unit -> 'a t) -> finally:(unit -> unit t) -> 'a t