Module Set
This module is undocumented. This is a list of its definitions. 
contains :: Set.T a -> a -> Boolean 
  
fold :: (a -> b -> <c> a) -> a -> Set.T b -> <c> a 
  
fromList :: [a] -> Set.T a 
  
isEmpty :: Set.T a -> Boolean 
  
iter :: (a -> <c> b) -> Set.T a -> <c> () 
  
iterB :: (a -> <b> Boolean) -> Set.T a -> <b> Boolean 
  
iterI :: (Integer -> a -> <c> b) -> Set.T a -> <c> () 
  
singleton :: a -> Set.T a 
  
size :: Set.T a -> Integer 
  
 |