You can search for identifiers within the package.
in-package search v0.2.0
Javascript specific Lwt functions.
val sleep : float -> unit Lwt.t
sleep d is a threads which remain suspended for d seconds and then terminates.
sleep d
d
val yield : unit -> unit Lwt.t
yield () is a threads which suspends itself and then resumes as soon as possible and terminates.
yield ()