Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. biany :: Bifoldable t => (a -> Bool) -> (b -> Bool) -> t a b -> Bool

    base Data.Bifoldable

    Determines whether any element of the structure satisfies its appropriate predicate argument. Empty structures yield False.

    Examples

    Basic usage:
    >>> biany even isDigit (27, 't')
    False
    
    >>> biany even isDigit (27, '8')
    True
    
    >>> biany even isDigit (26, 't')
    True
    
    >>> biany even isDigit (Left 27)
    False
    
    >>> biany even isDigit (Left 26)
    True
    
    >>> biany even isDigit (BiList [27, 53] ['t', '8'])
    True
    
    Empty structures yield False:
    >>> biany even isDigit (BiList [] [])
    False
    

  2. getAny :: Any -> Bool

    base Data.Monoid

    No documentation available.

  3. getAny :: Any -> Bool

    base Data.Semigroup

    No documentation available.

  4. eTOOMANYREFS :: Errno

    base Foreign.C.Error

    No documentation available.

  5. withMany :: (a -> (b -> res) -> res) -> [a] -> ([b] -> res) -> res

    base Foreign.Marshal.Utils

    Replicates a withXXX combinator over a list of objects, yielding a list of marshalled objects

  6. many :: ReadP a -> ReadP [a]

    base Text.ParserCombinators.ReadP

    Parses zero or more occurrences of the given parser.

  7. many1 :: ReadP a -> ReadP [a]

    base Text.ParserCombinators.ReadP

    Parses one or more occurrences of the given parser.

  8. manyTill :: ReadP a -> ReadP end -> ReadP [a]

    base Text.ParserCombinators.ReadP

    manyTill p end parses zero or more occurrences of p, until end succeeds. Returns a list of values returned by p.

  9. skipMany :: ReadP a -> ReadP ()

    base Text.ParserCombinators.ReadP

    Like many, but discards the result.

  10. skipMany1 :: ReadP a -> ReadP ()

    base Text.ParserCombinators.ReadP

    Like many1, but discards the result.

Page 93 of many | Previous | Next