| 
 This module is undocumented. This is a list of its definitions. 
contains :: MMap.T a b -> a -> <Proc> Boolean 
  
create :: () -> <Proc> MMap.T a b 
  
entries :: MMap.T a b -> <Proc> [(a, b)] 
  
fromList :: [(a, b)] -> <Proc> MMap.T a b 
  
get :: MMap.T a b -> a -> <Proc> Maybe b 
  
put :: MMap.T a b -> a -> b -> <Proc> Maybe b 
  
size :: MMap.T a b -> <Proc> Integer 
  
unsafeGet :: MMap.T a b -> a -> <Proc> b 
  
 |