Hoogle Search

Within LTS Haskell 24.56 (ghc-9.10.3)

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

  1. manyTill :: Alternative f => f a -> f b -> f [a]

    attoparsec Data.Attoparsec.Text.Lazy

    manyTill p end applies action p zero or more times until action end succeeds, and returns the list of values returned by p. This can be used to scan comments:

    simpleComment   = string "<!--" *> manyTill anyChar (string "-->")
    
    (Note the overlapping parsers anyChar and string "-->". While this will work, it is not very efficient, as it will cause a lot of backtracking.)

  2. manyTill' :: MonadPlus m => m a -> m b -> m [a]

    attoparsec Data.Attoparsec.Text.Lazy

    manyTill' p end applies action p zero or more times until action end succeeds, and returns the list of values returned by p. This can be used to scan comments:

    simpleComment   = string "<!--" *> manyTill' anyChar (string "-->")
    
    (Note the overlapping parsers anyChar and string "-->". While this will work, it is not very efficient, as it will cause a lot of backtracking.) The value returned by p is forced to WHNF.

  3. skipMany :: Alternative f => f a -> f ()

    attoparsec Data.Attoparsec.Text.Lazy

    Skip zero or more instances of an action.

  4. skipMany1 :: Alternative f => f a -> f ()

    attoparsec Data.Attoparsec.Text.Lazy

    Skip one or more instances of an action.

  5. tooManyRequests429 :: Status

    http-types Network.HTTP.Types

    Too Many Requests 429 (RFC 6585)

  6. tooManyRequests429 :: Status

    http-types Network.HTTP.Types.Status

    Too Many Requests 429 (RFC 6585)

  7. compactContainsAny# :: a -> State# RealWorld -> (# State# RealWorld, Int# #)

    ghc-prim GHC.Prim

    Returns 1# if the object is in any CNF at all, 0# otherwise.

  8. addrToAny# :: Addr# -> (# a_levpoly #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  9. compactContainsAny# :: a -> State# RealWorld -> (# State# RealWorld, Int# #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  10. Many :: Multiplicity

    ghc-prim GHC.Types

    No documentation available.

Page 102 of many | Previous | Next