data-pprint-0.2.4: Prettyprint and compare Data values

Safe HaskellSafe
LanguageHaskell98

System.IO.Parallel

Description

Intended for internal use: Parallel evaluation of IO values

Synopsis

Documentation

twoParallel :: IO a -> IO b -> IO (a, b)

Run two IO computations in parallel and wait for the results.

threeParallel :: IO a -> IO b -> IO c -> IO (a, b, c)

Run three IO computations in parallel and wait for the results.

fourParallel :: IO a -> IO b -> IO c -> IO d -> IO (a, b, c, d)

Run four IO computations in parallel and wait for the results.

manyParallel :: [IO a] -> IO [a]

Run computations in parallel and wait for the results.