Module Bookmark.Record

type t = Ecaml__.Import.Value.t Core_kernel.Map.M(Ecaml__.Symbol.Compare_name).t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
include Ecaml__.Import.Valueable.S with type t := t
type t
type 'a type_
val of_value_exn : Ecaml_value__.Value0.t -> t
val to_value : t -> Ecaml_value__.Value0.t
val type_ : t type_
val t : t type_
val get : t -> 'a Property.t -> 'a option

get t key returns None if key is not in t, and raises if the value has an unexpected type.

val get_exn : t -> 'a Property.t -> 'a
val set : t -> 'a Property.t -> 'a -> t

set t key data silently overrides any existing value of key in t.

val create : Property.And_value.t list -> t

It is an error to repeat properties.