Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. 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.

  2. 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.

  3. 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.

  4. 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.

  5. 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.

  6. 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.

  7. 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.

  8. 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

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

    conduit Data.Conduit.Combinators.Stream

    No documentation available.

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

    microlens Lens.Micro

    Returns True if any value returned by a getter (any getter, including lenses, traversals, and folds) satisfies a predicate.

    >>> anyOf each (=='x') ['x','x']
    True
    
    >>> anyOf each (=='x') ['x','y']
    True
    
    >>> anyOf each (=='x') ['y','y']
    False
    

Page 45 of many | Previous | Next