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.

  1. 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'.

  2. 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'.

  3. 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'.

  4. replicateConcurrently_ :: MonadBaseControl IO m => Int -> m a -> m ()

    lifted-async Control.Concurrent.Async.Lifted

    Generalized version of replicateConcurrently_.

  5. replicateConcurrently_ :: (MonadBaseControl IO m, Forall (Pure m)) => Int -> m a -> m ()

    lifted-async Control.Concurrent.Async.Lifted.Safe

    Generalized version of replicateConcurrently_.

  6. replicateM_ :: Applicative m => Int -> m a -> m ()

    base Control.Monad

    Like replicateM, but discards the result.

    Examples

    >>> replicateM_ 3 (putStr "a")
    aaa
    

  7. 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'.

  8. replicateM_ :: Applicative m => Int -> m a -> m ()

    rio RIO.Prelude

    Like replicateM, but discards the result.

    Examples

    >>> replicateM_ 3 (putStr "a")
    aaa
    

  9. replicateM_ :: Applicative m => Int -> m a -> m ()

    relude Relude.Monad.Reexport

    Like replicateM, but discards the result.

    Examples

    >>> replicateM_ 3 (putStr "a")
    aaa
    

  10. 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