Module CCThread
Threads
status: unstable
- since
- 0.13
val spawn : (unit -> _) -> t
spawn f
creates a new thread that runsf ()
.
val spawn1 : ('a -> _) -> 'a -> t
spawn1 f x
is likespawn (fun () -> f x)
.- since
- 0.16
val spawn2 : ('a -> 'b -> _) -> 'a -> 'b -> t
spawn2 f x y
is likespawn (fun () -> f x y)
.- since
- 0.16
module Arr : sig ... end
Single-Use Barrier
module Barrier : sig ... end