You can search for identifiers within the package.
in-package search v0.2.0
Maps for ids
type 'a t
val empty : _ t
val find_exn : t -> 'a t -> 'a
Exception-raising find function.
Not_found
val find_opt : t -> 'a t -> 'a option
Option-returning find function.
val add : t -> 'a -> 'a t -> 'a t
Add a new binding, shadowing any earlier bdingin to the same key.
val find_add : t -> ('a option -> 'a) -> 'a t -> 'a t
Update the value bound to a key.
val iter : (t -> 'a -> unit) -> 'a t -> unit
Iter on the map.
val fold : (t -> 'a -> 'acc -> 'acc) -> 'a t -> 'acc -> 'acc
Fold on the map.