Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. anyOf :: Getting Any s a -> (a -> Bool) -> s -> Bool

    lens Control.Lens.Fold

    Returns True if any target of a Fold satisfies a predicate.

    >>> anyOf both (=='x') ('x','y')
    True
    
    >>> import Data.Data.Lens
    
    >>> anyOf biplate (== "world") (((),2::Int),"hello",("world",11::Int))
    True
    
    anyanyOf folded
    
    ianyOf l ≡ anyOf l . Indexed
    
    anyOf :: Getter s a     -> (a -> Bool) -> s -> Bool
    anyOf :: Fold s a       -> (a -> Bool) -> s -> Bool
    anyOf :: Lens' s a      -> (a -> Bool) -> s -> Bool
    anyOf :: Iso' s a       -> (a -> Bool) -> s -> Bool
    anyOf :: Traversal' s a -> (a -> Bool) -> s -> Bool
    anyOf :: Prism' s a     -> (a -> Bool) -> s -> Bool
    

  2. anyToken :: forall s (m :: Type -> Type) t u . (Stream s m t, Show t) => ParsecT s u m t

    parsec Text.Parsec

    The parser anyToken accepts any kind of token. It is for example used to implement eof. Returns the accepted token.

  3. anyChar :: forall s (m :: Type -> Type) u . Stream s m Char => ParsecT s u m Char

    parsec Text.Parsec.Char

    This parser succeeds for any character. Returns the parsed character.

  4. anyToken :: forall s (m :: Type -> Type) t u . (Stream s m t, Show t) => ParsecT s u m t

    parsec Text.Parsec.Combinator

    The parser anyToken accepts any kind of token. It is for example used to implement eof. Returns the accepted token.

  5. anyChar :: forall s (m :: Type -> Type) u . Stream s m Char => ParsecT s u m Char

    parsec Text.ParserCombinators.Parsec.Char

    This parser succeeds for any character. Returns the parsed character.

  6. anyToken :: forall s (m :: Type -> Type) t u . (Stream s m t, Show t) => ParsecT s u m t

    parsec Text.ParserCombinators.Parsec.Combinator

    The parser anyToken accepts any kind of token. It is for example used to implement eof. Returns the accepted token.

  7. anyC :: forall (m :: Type -> Type) a o . Monad m => (a -> Bool) -> ConduitT a o m Bool

    conduit Conduit

    Check that at least one value in the stream returns True. Subject to shortcut logic: at the first True, consumption of the stream will stop.

  8. anyCE :: forall (m :: Type -> Type) mono o . (Monad m, MonoFoldable mono) => (Element mono -> Bool) -> ConduitT mono o m Bool

    conduit Conduit

    Check that at least one element in the chunked stream returns True. Subject to shortcut logic: at the first True, consumption of the stream will stop.

  9. anyE :: forall (m :: Type -> Type) mono o . (Monad m, MonoFoldable mono) => (Element mono -> Bool) -> ConduitT mono o m Bool

    conduit Data.Conduit.Combinators

    Check that at least one element in the chunked stream returns True. Subject to shortcut logic: at the first True, consumption of the stream will stop. Subject to fusion

  10. anyS :: forall (m :: Type -> Type) a . Monad m => (a -> Bool) -> StreamConsumer a m Bool

    conduit Data.Conduit.Combinators.Stream

    No documentation available.

Page 45 of many | Previous | Next