You can search for identifiers within the package.
in-package search v0.2.0
A handler to produce elements in streams.
type 'a t = 'a signal
val send : 'a signal -> 'a -> unit
send s x sends value x to an associated stream.
send s x
x
val repeat : 'a signal -> times:int -> 'a -> unit
repeat s ~times:n x sends value x to an associated stream n times
repeat s ~times:n x
n