Module Ref.Permissioned

module Permissioned: sig .. end

type ('a, +'perm) t 
include Container.S1_phantom
val create : 'a -> ('a, 'b) t
val read_only : ('a, 'b) t -> ('a, Common.read_only) t
val (!) : ('a, 'b) t -> 'a
get and (!) are two names for the same function.
val get : ('a, 'b) t -> 'a
val set : ('a, Common.read_write) t -> 'a -> unit
set and (:=) are two names for the same function.
val (:=) : ('a, Common.read_write) t -> 'a -> unit
val of_ref : 'a Pervasives.ref -> ('a, Common.read_write) t
val to_ref : ('a, Common.read_write) t -> 'a Pervasives.ref
val swap : ('a, Common.read_write) t ->
('a, Common.read_write) t -> unit
val replace : ('a, Common.read_write) t -> ('a -> 'a) -> unit
val t_of_sexp : (Sexplib.Sexp.t -> 'a) ->
(Sexplib.Sexp.t -> 'perm) -> Sexplib.Sexp.t -> ('a, 'perm) t
val sexp_of_t : ('a -> Sexplib.Sexp.t) ->
('perm -> Sexplib.Sexp.t) -> ('a, 'perm) t -> Sexplib.Sexp.t
val bin_t : 'a Bin_prot.Type_class.t ->
'perm Bin_prot.Type_class.t ->
('a, 'perm) t Bin_prot.Type_class.t
val bin_read_t : 'a Bin_prot.Unsafe_read_c.reader ->
'perm Bin_prot.Unsafe_read_c.reader ->
('a, 'perm) t Bin_prot.Read_ml.reader
val bin_read_t_ : 'a Bin_prot.Unsafe_read_c.reader ->
'perm Bin_prot.Unsafe_read_c.reader ->
('a, 'perm) t Bin_prot.Unsafe_read_c.reader
val bin_read_t__ : 'a Bin_prot.Unsafe_read_c.reader ->
'perm Bin_prot.Unsafe_read_c.reader ->
(int -> ('a, 'perm) t) Bin_prot.Unsafe_read_c.reader
val bin_reader_t : 'a Bin_prot.Type_class.reader ->
'perm Bin_prot.Type_class.reader ->
('a, 'perm) t Bin_prot.Type_class.reader
val bin_size_t : 'a Bin_prot.Size.sizer ->
'perm Bin_prot.Size.sizer ->
('a, 'perm) t Bin_prot.Size.sizer
val bin_write_t : 'a Bin_prot.Unsafe_write_c.writer ->
'perm Bin_prot.Unsafe_write_c.writer ->
('a, 'perm) t Bin_prot.Write_ml.writer
val bin_write_t_ : 'a Bin_prot.Unsafe_write_c.writer ->
'perm Bin_prot.Unsafe_write_c.writer ->
('a, 'perm) t Bin_prot.Unsafe_write_c.writer
val bin_writer_t : 'a Bin_prot.Type_class.writer ->
'perm Bin_prot.Type_class.writer ->
('a, 'perm) t Bin_prot.Type_class.writer

get and (!) are two names for the same function.

set and (:=) are two names for the same function.