Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type nonrec 'a t = < > Js_of_ocaml.Js.t
val create : unit -> 'a t
val add : 'a t -> string -> 'a -> unit
val add_list : 'a t -> (string * 'a) list -> unit
val add_listf : 'a t -> ('a -> 'b) -> (string * 'a) list -> unit
val make : (string * 'a) list -> 'a t
val makef : ('a -> 'b) -> (string * 'a) list -> 'a t
val remove : 'a t -> string -> unit
val find : 'a t -> string -> 'a option
val keys : 'a t -> string list
val items : 'a t -> (string * 'a) list
val itemsf : ('b -> 'a) -> 'a t -> (string * 'a) list
val length : 'a t -> 'res