sig
type 'a t = 'a Pervasives.ref = { mutable contents : 'a; }
val typerep_of_t :
'a Typerep_lib.Std.Typerep.t -> 'a Ref.t Typerep_lib.Std.Typerep.t
val typename_of_t :
'a Typerep_lib.Std.Typename.t -> 'a Ref.t Typerep_lib.Std.Typename.t
val mem : ?equal:('a -> 'a -> bool) -> 'a t -> 'a -> bool
val length : 'a t -> int
val is_empty : 'a t -> bool
val iter : 'a t -> f:('a -> unit) -> unit
val fold : 'a t -> init:'accum -> f:('accum -> 'a -> 'accum) -> 'accum
val exists : 'a t -> f:('a -> bool) -> bool
val for_all : 'a t -> f:('a -> bool) -> bool
val count : 'a t -> f:('a -> bool) -> int
val sum :
(module Commutative_group.S with type t = 'sum) ->
'a t -> f:('a -> 'sum) -> 'sum
val find : 'a t -> f:('a -> bool) -> 'a option
val find_map : 'a t -> f:('a -> 'b option) -> 'b option
val to_list : 'a t -> 'a list
val to_array : 'a t -> 'a array
val min_elt : 'a t -> cmp:('a -> 'a -> int) -> 'a option
val max_elt : 'a t -> cmp:('a -> 'a -> int) -> 'a option
val create : 'a -> 'a Ref.t
val ( ! ) : 'a Ref.t -> 'a
val ( := ) : 'a Ref.t -> 'a -> unit
val swap : 'a Ref.t -> 'a Ref.t -> unit
val replace : 'a Ref.t -> ('a -> 'a) -> unit
module Permissioned :
sig
type ('a, -'perms) t
val mem :
?equal:('a -> 'a -> bool) ->
('a, [> Perms.Export.read ]) t -> 'a -> bool
val length : ('a, [> Perms.Export.read ]) t -> int
val is_empty : ('a, [> Perms.Export.read ]) t -> bool
val iter : ('a, [> Perms.Export.read ]) t -> f:('a -> unit) -> unit
val fold :
('a, [> Perms.Export.read ]) t ->
init:'accum -> f:('accum -> 'a -> 'accum) -> 'accum
val exists : ('a, [> Perms.Export.read ]) t -> f:('a -> bool) -> bool
val for_all : ('a, [> Perms.Export.read ]) t -> f:('a -> bool) -> bool
val count : ('a, [> Perms.Export.read ]) t -> f:('a -> bool) -> int
val sum :
(module Commutative_group.S with type t = 'sum) ->
('a, [> Perms.Export.read ]) t -> f:('a -> 'sum) -> 'sum
val find :
('a, [> Perms.Export.read ]) t -> f:('a -> bool) -> 'a option
val find_map :
('a, [> Perms.Export.read ]) t -> f:('a -> 'b option) -> 'b option
val to_list : ('a, [> Perms.Export.read ]) t -> 'a list
val to_array : ('a, [> Perms.Export.read ]) t -> 'a array
val min_elt :
('a, [> Perms.Export.read ]) t -> cmp:('a -> 'a -> int) -> 'a option
val max_elt :
('a, [> Perms.Export.read ]) t -> cmp:('a -> 'a -> int) -> 'a option
val create : 'a -> ('a, [< 'b Common.perms ]) Ref.Permissioned.t
val read_only :
('a, [> Common.read ]) Ref.Permissioned.t ->
('a, Common.read) Ref.Permissioned.t
val ( ! ) : ('a, [> Common.read ]) Ref.Permissioned.t -> 'a
val get : ('a, [> Common.read ]) Ref.Permissioned.t -> 'a
val set : ('a, [> Common.write ]) Ref.Permissioned.t -> 'a -> unit
val ( := ) : ('a, [> Common.write ]) Ref.Permissioned.t -> 'a -> unit
val of_ref :
'a Pervasives.ref -> ('a, [< Common.read_write ]) Ref.Permissioned.t
val to_ref :
('a, [> Common.read_write ]) Ref.Permissioned.t -> 'a Pervasives.ref
val swap :
('a, [> Common.read_write ]) Ref.Permissioned.t ->
('a, [> Common.read_write ]) Ref.Permissioned.t -> unit
val replace :
('a, [> Common.read_write ]) Ref.Permissioned.t -> ('a -> 'a) -> unit
val bin_t :
'a Bin_prot.Type_class.t ->
'perms Bin_prot.Type_class.t ->
('a, 'perms) Ref.Permissioned.t Bin_prot.Type_class.t
val bin_read_t :
'a Bin_prot.Read.reader ->
'perms Bin_prot.Read.reader ->
('a, 'perms) Ref.Permissioned.t Bin_prot.Read.reader
val __bin_read_t__ :
'a Bin_prot.Read.reader ->
'perms Bin_prot.Read.reader ->
(int -> ('a, 'perms) Ref.Permissioned.t) Bin_prot.Read.reader
val bin_reader_t :
'a Bin_prot.Type_class.reader ->
'perms Bin_prot.Type_class.reader ->
('a, 'perms) Ref.Permissioned.t Bin_prot.Type_class.reader
val bin_size_t :
'a Bin_prot.Size.sizer ->
'perms Bin_prot.Size.sizer ->
('a, 'perms) Ref.Permissioned.t Bin_prot.Size.sizer
val bin_write_t :
'a Bin_prot.Write.writer ->
'perms Bin_prot.Write.writer ->
('a, 'perms) Ref.Permissioned.t Bin_prot.Write.writer
val bin_writer_t :
'a Bin_prot.Type_class.writer ->
'perms Bin_prot.Type_class.writer ->
('a, 'perms) Ref.Permissioned.t Bin_prot.Type_class.writer
val t_of_sexp :
(Sexplib.Sexp.t -> 'a) ->
(Sexplib.Sexp.t -> 'perms) ->
Sexplib.Sexp.t -> ('a, 'perms) Ref.Permissioned.t
val sexp_of_t :
('a -> Sexplib.Sexp.t) ->
('perms -> Sexplib.Sexp.t) ->
('a, 'perms) Ref.Permissioned.t -> Sexplib.Sexp.t
end
val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a Ref.t
val sexp_of_t : ('a -> Sexplib.Sexp.t) -> 'a Ref.t -> Sexplib.Sexp.t
val compare : ('a -> 'a -> int) -> 'a Ref.t -> 'a Ref.t -> int
val bin_t : 'a Bin_prot.Type_class.t -> 'a Ref.t Bin_prot.Type_class.t
val bin_read_t : 'a Bin_prot.Read.reader -> 'a Ref.t Bin_prot.Read.reader
val __bin_read_t__ :
'a Bin_prot.Read.reader -> (int -> 'a Ref.t) Bin_prot.Read.reader
val bin_reader_t :
'a Bin_prot.Type_class.reader -> 'a Ref.t Bin_prot.Type_class.reader
val bin_size_t : 'a Bin_prot.Size.sizer -> 'a Ref.t Bin_prot.Size.sizer
val bin_write_t :
'a Bin_prot.Write.writer -> 'a Ref.t Bin_prot.Write.writer
val bin_writer_t :
'a Bin_prot.Type_class.writer -> 'a Ref.t Bin_prot.Type_class.writer
end