You can search for identifiers within the package.
in-package search v0.2.0
session
Thread_IO.IO
include S.IO
type +'a t
The type of blocking computation that will produce a value of type 'a
'a
val return : 'a -> 'a t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
val in_thread : (unit -> 'a) -> 'a t
in_thread f runs f () in a separate thread, returning a blocking computation that will become determined once execution of f is complete.
in_thread f
f ()
f