Module Async
This module is undocumented. This is a list of its definitions. 
pmap :: (a -> <Proc> b) -> [a] -> <Proc> [b] 
  
runAsync :: <Proc> a -> <Proc> () 
  
schedule :: <Proc> a -> Long -> TimeUnit -> <Proc> Future a 
  
scheduleAtFixedRate :: <Proc> a -> Long -> Long -> TimeUnit -> <Proc> Future a 
  
scheduleWithFixedDelay :: <Proc> a -> Long -> Long -> TimeUnit -> <Proc> Future a 
  
 |