Module CCMixmap.Make
Parameters
Signature
val empty : t
Empty map.
val get : inj:'a injection -> key -> t -> 'a option
Get the value corresponding to this key, if it exists and belongs to the same key.
val find : inj:'a injection -> key -> t -> 'a
Find the value for the given key, which must be of the right type.
- raises Not_found
if either the key is not found, or if its value doesn't belong to the right type.
val cardinal : t -> int
Number of bindings.