Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. decodeMany :: ByteString -> Either String [Sexp]

    sexp-grammar Language.Sexp

    Deserialise potentially multiple Sexp from a string

  2. ucs2any :: ProcessType r => r

    shell-conduit Data.Conduit.Shell

    No documentation available.

  3. ucs2any :: ProcessType r => r

    shell-conduit Data.Conduit.Shell.PATH

    No documentation available.

  4. many :: MonadPlus m => m a -> m [a]

    shellwords Text.Megaparsec.Compat

    many p applies the parser p zero or more times and returns a list of the values returned by p.

    identifier = (:) <$> letter <*> many (alphaNumChar <|> char '_')
    

  5. manyTill :: MonadPlus m => m a -> m end -> m [a]

    shellwords Text.Megaparsec.Compat

    manyTill p end applies parser p zero or more times until parser end succeeds. Returns the list of values returned by p. Note that end result is consumed and lost. Use manyTill_ if you wish to keep it. See also: skipMany, skipManyTill.

  6. manyTill_ :: MonadPlus m => m a -> m end -> m ([a], end)

    shellwords Text.Megaparsec.Compat

    manyTill_ p end applies parser p zero or more times until parser end succeeds. Returns the list of values returned by p and the end result. Use manyTill if you have no need in the result of the end. See also: skipMany, skipManyTill.

  7. skipMany :: MonadPlus m => m a -> m ()

    shellwords Text.Megaparsec.Compat

    skipMany p applies the parser p zero or more times, skipping its result. See also: manyTill, skipManyTill.

  8. skipManyTill :: MonadPlus m => m a -> m end -> m end

    shellwords Text.Megaparsec.Compat

    skipManyTill p end applies the parser p zero or more times skipping results until parser end succeeds. Result parsed by end is then returned. See also: manyTill, skipMany.

  9. ManyWorkers :: Int -> Count -> Work

    streamly Streamly.Internal.Data.Channel

    No documentation available.

  10. ManyWorkers :: Int -> Count -> Work

    streamly Streamly.Internal.Data.SVar

    No documentation available.

Page 244 of many | Previous | Next