sig
  type 'a t = 'Pervasives.ref = { mutable contents : 'a; }
  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 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 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, +'perm) t
      val mem : ?equal:('-> '-> bool) -> ('a, 'b) t -> '-> bool
      val length : ('a, 'b) t -> int
      val is_empty : ('a, 'b) t -> bool
      val iter : ('a, 'b) t -> f:('-> unit) -> unit
      val fold :
        ('a, 'b) t -> init:'accum -> f:('accum -> '-> 'accum) -> 'accum
      val exists : ('a, 'b) t -> f:('-> bool) -> bool
      val for_all : ('a, 'b) t -> f:('-> bool) -> bool
      val count : ('a, 'b) t -> f:('-> bool) -> int
      val find : ('a, 'b) t -> f:('-> bool) -> 'a option
      val find_map : ('a, 'c) t -> f:('-> 'b option) -> 'b option
      val to_list : ('a, 'b) t -> 'a list
      val to_array : ('a, 'b) t -> 'a array
      val create : '-> ('a, 'b) Ref.Permissioned.t
      val read_only :
        ('a, 'b) Ref.Permissioned.t ->
        ('a, Common.read_only) Ref.Permissioned.t
      val ( ! ) : ('a, 'b) Ref.Permissioned.t -> 'a
      val get : ('a, 'b) Ref.Permissioned.t -> 'a
      val set : ('a, Common.read_write) Ref.Permissioned.t -> '-> unit
      val ( := ) : ('a, Common.read_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 t_of_sexp :
        (Sexplib.Sexp.t -> 'a) ->
        (Sexplib.Sexp.t -> 'perm) ->
        Sexplib.Sexp.t -> ('a, 'perm) Ref.Permissioned.t
      val sexp_of_t :
        ('-> Sexplib.Sexp.t) ->
        ('perm -> Sexplib.Sexp.t) ->
        ('a, 'perm) Ref.Permissioned.t -> Sexplib.Sexp.t
      val bin_t :
        'Bin_prot.Type_class.t ->
        'perm Bin_prot.Type_class.t ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Type_class.t
      val bin_read_t :
        'Bin_prot.Unsafe_read_c.reader ->
        'perm Bin_prot.Unsafe_read_c.reader ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Read_ml.reader
      val bin_read_t_ :
        'Bin_prot.Unsafe_read_c.reader ->
        'perm Bin_prot.Unsafe_read_c.reader ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ :
        'Bin_prot.Unsafe_read_c.reader ->
        'perm Bin_prot.Unsafe_read_c.reader ->
        (int -> ('a, 'perm) Ref.Permissioned.t) Bin_prot.Unsafe_read_c.reader
      val bin_reader_t :
        'Bin_prot.Type_class.reader ->
        'perm Bin_prot.Type_class.reader ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Type_class.reader
      val bin_size_t :
        'Bin_prot.Size.sizer ->
        'perm Bin_prot.Size.sizer ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Size.sizer
      val bin_write_t :
        'Bin_prot.Unsafe_write_c.writer ->
        'perm Bin_prot.Unsafe_write_c.writer ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Write_ml.writer
      val bin_write_t_ :
        'Bin_prot.Unsafe_write_c.writer ->
        'perm Bin_prot.Unsafe_write_c.writer ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Unsafe_write_c.writer
      val bin_writer_t :
        'Bin_prot.Type_class.writer ->
        'perm Bin_prot.Type_class.writer ->
        ('a, 'perm) Ref.Permissioned.t Bin_prot.Type_class.writer
    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 bin_t : 'Bin_prot.Type_class.t -> 'Ref.t Bin_prot.Type_class.t
  val bin_read_t :
    'Bin_prot.Unsafe_read_c.reader -> 'Ref.t Bin_prot.Read_ml.reader
  val bin_read_t_ :
    'Bin_prot.Unsafe_read_c.reader ->
    'Ref.t Bin_prot.Unsafe_read_c.reader
  val bin_read_t__ :
    'Bin_prot.Unsafe_read_c.reader ->
    (int -> 'Ref.t) Bin_prot.Unsafe_read_c.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.Unsafe_write_c.writer -> 'Ref.t Bin_prot.Write_ml.writer
  val bin_write_t_ :
    'Bin_prot.Unsafe_write_c.writer ->
    'Ref.t Bin_prot.Unsafe_write_c.writer
  val bin_writer_t :
    'Bin_prot.Type_class.writer -> 'Ref.t Bin_prot.Type_class.writer
end