= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package containers
-
containers
-
containers.data
-
containers.monomorphic
-
containers.sexp
-
containers.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Threads
status: unstable
- since 0.13
type t = Thread.t
val spawn : (unit -> _) -> t
spawn f
creates a new thread that runs f ()
.
val spawn1 : ('a -> _) -> 'a -> t
spawn1 f x
is like spawn (fun () -> f x)
.
- since 0.16
val spawn2 : ('a -> 'b -> _) -> 'a -> 'b -> t
spawn2 f x y
is like spawn (fun () -> f x y)
.
- since 0.16
module Arr : sig ... end
Single-Use Barrier
module Barrier : sig ... end
ON THIS PAGE