-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Asynchronous Computations -- -- An implementation of IO computations that return their value -- asynchronously. @package async @version 1.2 module Control.Async data Async a forkAsync :: IO a -> IO (Async a) throwToAsync :: Async a -> SomeException -> IO () killAsync :: Async a -> IO () isReadyAsync :: Async a -> IO Bool waitForAsync :: Async a -> IO a parIO :: IO a -> IO a -> IO a