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.
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.
-
http-types Network.HTTP.Types Forbidden 403
-
http-types Network.HTTP.Types.Status Forbidden 403
-
ghc-prim GHC.PrimopWrappers No documentation available.
-
ghc-prim GHC.PrimopWrappers No documentation available.
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
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_.
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
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_.
forkRepeat :: IO a -> IO ThreadIdasync 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.