Module Map
This module is undocumented. This is a list of its definitions. 
containsKey :: Map.T a b -> a -> Boolean 
  
containsValue :: Map.T a b -> b -> Boolean 
  
entrySet :: Map.T a b -> Set.T (Entry a b) 
  
fold :: (a -> b -> c -> <d> a) -> a -> Map.T b c -> <d> a 
  
freeze :: MMap.T a b -> <Proc> Map.T a b 
  
get :: Map.T a b -> a -> Maybe b 
  
isEmpty :: Map.T a b -> Boolean 
  
iter :: (a -> b -> <c> ()) -> Map.T a b -> <c> () 
  
iterB :: (a -> b -> <c> Boolean) -> Map.T a b -> <c> Boolean 
  
keySet :: Map.T a b -> Set.T a 
  
size :: Map.T a b -> Integer 
  
unsafeGet :: Map.T a b -> a -> b 
  
 |