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. anySelector :: Selector

    scalpel Text.HTML.Scalpel

    A selector which will match any node (including tags and bare text).

  2. anySingle :: MonadParsec e s m => m (Token s)

    shellwords Text.Megaparsec.Compat

    Parse and return a single token. It's a good idea to attach a label to this parser.

    anySingle = satisfy (const True)
    
    See also: satisfy, anySingleBut.

  3. anySingleBut :: MonadParsec e s m => Token s -> m (Token s)

    shellwords Text.Megaparsec.Compat

    Match any token but the given one. It's a good idea to attach a label to this parser.

    anySingleBut t = satisfy (/= t)
    
    See also: single, anySingle, satisfy.

  4. anyp :: [a -> Bool] -> a -> Bool

    swish Swish.RDF.Query

    Test if a value satisfies any predicate in a list

  5. anySingle :: MonadParsec e s m => m (Token s)

    tomland Toml.Parser.Core

    Parse and return a single token. It's a good idea to attach a label to this parser.

    anySingle = satisfy (const True)
    
    See also: satisfy, anySingleBut.

  6. anyValueP :: Parser AnyValue

    tomland Toml.Parser.Value

    Uses valueP and typechecks it.

  7. anyE :: forall (m :: Type -> Type) a b . Monad m => [VarT m a (Event b)] -> VarT m a (Event b)

    varying Control.Varying.Event

    Combine two Event streams and produce an Event any time either stream produces. In the case that both streams produce, this produces the Event of the leftmost stream.

  8. anyExtension :: [String] -> FilePath -> a -> Bool

    yi-misc-modes Yi.Modes

    When applied to an extensions list, creates a modeApplies function.

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

    classy-prelude-yesod ClassyPrelude.Yesod

    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.

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

    classy-prelude-yesod ClassyPrelude.Yesod

    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.

Page 87 of many | Previous | Next