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