Module Stdune__.Univ_map
type tA universal map is a map that can store values for arbitrary keys. It is the the key that conveys the type of the data associated to it.
module Key : sig ... endval empty : tval is_empty : t -> boolval mem : t -> 'a Key.t -> boolval add : t -> 'a Key.t -> 'a -> tval remove : t -> 'a Key.t -> tval find : t -> 'a Key.t -> 'a optionval find_exn : t -> 'a Key.t -> 'aval singleton : 'a Key.t -> 'a -> tval superpose : t -> t -> tsuperpose a bisbaugmented with bindings ofathat are not inb.
val to_sexp : t -> Stdune.Sexp.t