Hoogle Search
Within LTS Haskell 24.24 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
replicateM_ :: Applicative m => Int -> m a -> m ()verset Verset Like replicateM, but discards the result.
Examples
>>> replicateM_ 3 (putStr "a") aaa
pooledReplicateConcurrently_ :: MonadUnliftIO m => Int -> m a -> m ()unliftio UnliftIO.Async Similar to pooledReplicateConcurrently_ but with number of threads set from getNumCapabilities. Usually this is useful for CPU bound tasks.
pooledReplicateConcurrently_ :: MonadUnliftIO m => Int -> m a -> m ()unliftio UnliftIO.Internals.Async Similar to pooledReplicateConcurrently_ but with number of threads set from getNumCapabilities. Usually this is useful for CPU bound tasks.
pooledReplicateConcurrently_ :: MonadUnliftIO m => Int -> m a -> m ()classy-prelude-yesod ClassyPrelude.Yesod Similar to pooledReplicateConcurrently_ but with number of threads set from getNumCapabilities. Usually this is useful for CPU bound tasks.
replicateConcurrently_ :: MonadConc m => Int -> m a -> m ()concurrency Control.Concurrent.Classy.Async replicateConcurrently_ is replicateConcurrently with the return values discarded.
replicateM_ :: MonadParallel m => Int -> m a -> m ()monad-parallel Control.Monad.Parallel Like replicateM_, but executing the action multiple times in parallel.
(
>*> ) :: Monad m => m a -> Int -> m ()xmonad-contrib XMonad.Actions.TopicSpace An alias for flip replicateM_