module type Map = sig .. end
Signature for maps as command line parameters.
Since Sodium-20150201
type key
Type of keys of the map.
type value
Type of the values associated to the keys.
include Parameter_sig.Collection
A map is a collection in which elements are pairs (key, value), but some
values may be missing.
A map is a collection in which elements are pairs (key, value), but some
values may be missing.
Additional accessors to the map.
val find : key -> value
Search a given key in the map.
Raises Not_found if there is no such key in the map.
val mem : key -> bool