Module Ivar

module Ivar: Ivar

type 'a t = ('a, Execution_context.t) Raw_ivar.t 
val sexp_of_t : ('a -> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
val bin_size_t : 'a Bin_prot.Size.sizer -> 'a t Bin_prot.Size.sizer
val bin_write_t : 'a Bin_prot.Unsafe_write_c.writer ->
'a t Bin_prot.Write_ml.writer
val bin_write_t_ : 'a Bin_prot.Unsafe_write_c.writer ->
'a t Bin_prot.Unsafe_write_c.writer
val bin_writer_t : 'a Bin_prot.Type_class.writer ->
'a t Bin_prot.Type_class.writer
val bin_read_t : 'a Bin_prot.Unsafe_read_c.reader ->
'a t Bin_prot.Read_ml.reader
val bin_read_t_ : 'a Bin_prot.Unsafe_read_c.reader ->
'a t Bin_prot.Unsafe_read_c.reader
val bin_read_t__ : 'a Bin_prot.Unsafe_read_c.reader ->
(int -> 'a t) Bin_prot.Unsafe_read_c.reader
val bin_reader_t : 'a Bin_prot.Type_class.reader ->
'a t Bin_prot.Type_class.reader
val bin_t : 'a Bin_prot.Type_class.t -> 'a t Bin_prot.Type_class.t
type 'a detailed = 'a t 
val sexp_of_detailed : ('a -> Sexplib.Sexp.t) -> 'a detailed -> Sexplib.Sexp.t
type 'a deferred = ('a, Execution_context.t) Raw_deferred.t 
val equal : 'a t -> 'a t -> bool
equal t t' is physical equality of t and t'.
val create : unit -> 'a t
create () returns an empty ivar.
val fill : 'a t -> 'a -> unit
fill t v fills t with value v if t was empty. If t was full, fill raises an exception.
val fill_if_empty : 'a t -> 'a -> unit
fill_if_empty t v fills t with v if t is currently empty. If t is full, then fill_if_empty does nothing.
val is_empty : 'a t -> bool
is_empty t returns true if t is empty
val is_full : 'a t -> bool
is_full t returns true if t is full
val read : 'a t -> 'a deferred
read t returns a deferred that becomes enabled with value v after the ivar is filled with v.