containers.thread
CCThread
containers
containers.data
containers.iter
containers.monomorphic
containers.sexp
containers.top
containers.unix
status: unstable
type t = Thread.t
val spawn : (unit -> _) -> t
spawn f creates a new thread that runs f ().
spawn f
f ()
val spawn1 : ('a -> _) -> 'a -> t
spawn1 f x is like spawn (fun () -> f x).
spawn1 f x
spawn (fun () -> f x)
val spawn2 : ('a -> 'b -> _) -> 'a -> 'b -> t
spawn2 f x y is like spawn (fun () -> f x y).
spawn2 f x y
spawn (fun () -> f x y)
val detach : (unit -> 'a) -> unit
detach f is the same as ignore (spawn f).
detach f
ignore (spawn f)
module Arr : sig ... end
module Barrier : sig ... end