Hoogle Search
Within LTS Haskell 24.23 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
skipCount :: Monad m => Int -> m a -> m ()parser-combinators Control.Monad.Combinators skipCount n p parses n occurrences of p, skipping its result. If n is smaller or equal to zero, the parser equals to return (). See also: count, count'.
skipCount :: Monad m => Int -> m a -> m ()network-uri-template Network.URI.Template.Internal.Parse skipCount n p parses n occurrences of p, skipping its result. If n is smaller or equal to zero, the parser equals to return (). See also: count, count'.
skipCount :: Monad m => Int -> m a -> m ()shellwords Text.Megaparsec.Compat skipCount n p parses n occurrences of p, skipping its result. If n is smaller or equal to zero, the parser equals to return (). See also: count, count'.
replicateConcurrently_ :: MonadBaseControl IO m => Int -> m a -> m ()lifted-async Control.Concurrent.Async.Lifted Generalized version of replicateConcurrently_.
replicateConcurrently_ :: (MonadBaseControl IO m, Forall (Pure m)) => Int -> m a -> m ()lifted-async Control.Concurrent.Async.Lifted.Safe Generalized version of replicateConcurrently_.
replicateM_ :: Applicative m => Int -> m a -> m ()base Control.Monad Like replicateM, but discards the result.
Examples
>>> replicateM_ 3 (putStr "a") aaa
skipCount :: Applicative m => Int -> m a -> m ()parser-combinators Control.Applicative.Combinators skipCount n p parses n occurrences of p, skipping its result. If n is not positive, the parser equals to pure ().
skipCount = replicateM_
See also: count, count'.replicateM_ :: Applicative m => Int -> m a -> m ()rio RIO.Prelude Like replicateM, but discards the result.
Examples
>>> replicateM_ 3 (putStr "a") aaa
replicateM_ :: Applicative m => Int -> m a -> m ()relude Relude.Monad.Reexport Like replicateM, but discards the result.
Examples
>>> replicateM_ 3 (putStr "a") aaa
replicateM_ :: Applicative m => Int -> m a -> m ()base-compat-batteries Control.Monad.Compat Like replicateM, but discards the result.
Examples
>>> replicateM_ 3 (putStr "a") aaa
Page 1 of many | Next