Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. forMArrayM_ :: (MArray a e m, Ix i) => a i e -> (e -> m b) -> m ()

    array Data.Array.MArray.Safe

    forMArrayM_ is mapMArrayM_ with its arguments flipped.

  2. forbidden403 :: Status

    http-types Network.HTTP.Types

    Forbidden 403

  3. forbidden403 :: Status

    http-types Network.HTTP.Types.Status

    Forbidden 403

  4. fork# :: (State# RealWorld -> (# State# RealWorld, a_reppoly #)) -> State# RealWorld -> (# State# RealWorld, ThreadId# #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  5. forkOn# :: Int# -> (State# RealWorld -> (# State# RealWorld, a_reppoly #)) -> State# RealWorld -> (# State# RealWorld, ThreadId# #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  6. forConcurrently :: Traversable t => t a -> (a -> IO b) -> IO (t b)

    async Control.Concurrent.Async

    forConcurrently is mapConcurrently with its arguments flipped

    pages <- forConcurrently ["url1", "url2", "url3"] $ \url -> getURL url
    

  7. forConcurrently_ :: Foldable f => f a -> (a -> IO b) -> IO ()

    async Control.Concurrent.Async

    forConcurrently_ is forConcurrently with the return value discarded; a concurrent equivalent of forM_.

  8. forConcurrently :: Traversable t => t a -> (a -> IO b) -> IO (t b)

    async Control.Concurrent.Async.Internal

    forConcurrently is mapConcurrently with its arguments flipped

    pages <- forConcurrently ["url1", "url2", "url3"] $ \url -> getURL url
    

  9. forConcurrently_ :: Foldable f => f a -> (a -> IO b) -> IO ()

    async Control.Concurrent.Async.Internal

    forConcurrently_ is forConcurrently with the return value discarded; a concurrent equivalent of forM_.

  10. forkRepeat :: IO a -> IO ThreadId

    async Control.Concurrent.Async.Internal

    Fork a thread that runs the supplied action, and if it raises an exception, re-runs the action. The thread terminates only when the action runs to completion without raising an exception.

Page 15 of many | Previous | Next