Module Stdune__.Fdecl
val create : unit -> 'a t
create ()
creates a forward declaration.
val set : 'a t -> 'a -> unit
set t x
set's the value that is returned byget t
tox
. Raise ifset
was already called
val get : 'a t -> 'a
get t
returns thex
ifset comp x
was called. Raise ifset
has not been called yet.