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.
biany :: Bifoldable t => (a -> Bool) -> (b -> Bool) -> t a b -> Boolbase 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
-
base Data.Monoid No documentation available.
-
base Data.Semigroup No documentation available.
-
base Foreign.C.Error No documentation available.
withMany :: (a -> (b -> res) -> res) -> [a] -> ([b] -> res) -> resbase Foreign.Marshal.Utils Replicates a withXXX combinator over a list of objects, yielding a list of marshalled objects
-
base Text.ParserCombinators.ReadP Parses zero or more occurrences of the given parser.
-
base Text.ParserCombinators.ReadP Parses one or more occurrences of the given parser.
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.
skipMany :: ReadP a -> ReadP ()base Text.ParserCombinators.ReadP Like many, but discards the result.
skipMany1 :: ReadP a -> ReadP ()base Text.ParserCombinators.ReadP Like many1, but discards the result.