Module Java/Collection
This module is undocumented. This is a list of its definitions. 
all :: (a -> <b> Boolean) -> Collection a -> <b> Boolean 
  
any :: (a -> <b> Boolean) -> Collection a -> <b> Boolean 
  
contains :: Collection a -> a -> Boolean 
  
find :: (a -> <b> Boolean) -> Collection a -> <b> Maybe a 
  
foldl :: (a -> b -> <c> a) -> a -> Collection b -> <c> a 
  
foldl1 :: (a -> a -> <b> a) -> Collection a -> <b> a 
  
isEmpty :: Collection a -> Boolean 
  
iter :: (a -> <c> b) -> Collection a -> <c> () 
  
mapFirst :: (a -> <c> Maybe b) -> Collection a -> <c> Maybe b 
  
size :: Collection a -> Integer 
  
uniqueElement :: Collection a -> a 
  
 |