package ecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

The data side of bookmark-alist

val sexp_of_t : t -> Sexplib0.Sexp.t
include Ecaml_value.Valueable.S with type t := t
val of_value_exn : Ecaml_value__.Value0.t -> t
val to_value : t -> Ecaml_value__.Value0.t
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.