|
Module Extras/HashMapThis module is undocumented. This is a list of its definitions. contains :: MMap.T a b -> a -> <Proc> Boolean Returns create :: () -> <Proc> MMap.T a b Creates a new empty map. Deprecated: use entries :: MMap.T a b -> <Proc> [(a, b)] The entries of the map as a list of key-value pairs. The list is a snapshot, not
a view of the map. Deprecated: use fromList :: [(a, b)] -> <Proc> MMap.T a b Creates a new map from the given list of key-value pairs. Deprecated: use
get :: MMap.T a b -> a -> <Proc> Maybe b The value associated with the given key, or put :: MMap.T a b -> a -> b -> <Proc> Maybe b Associates the given value with the given key in the map and returns the value
that was previously associated with the key, or Deprecated: use size :: MMap.T a b -> <Proc> Integer The number of entries in the map. Deprecated: use unsafeGet :: MMap.T a b -> a -> <Proc> b The value associated with the given key, without checking that the key is
present. A missing key yields a Deprecated: use |