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.
-
scalpel Text.HTML.Scalpel A selector which will match any node (including tags and bare text).
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.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.anyp :: [a -> Bool] -> a -> Boolswish Swish.RDF.Query Test if a value satisfies any predicate in a list
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.-
tomland Toml.Parser.Value Uses valueP and typechecks it.
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.
anyExtension :: [String] -> FilePath -> a -> Boolyi-misc-modes Yi.Modes When applied to an extensions list, creates a modeApplies function.
anyC :: forall (m :: Type -> Type) a o . Monad m => (a -> Bool) -> ConduitT a o m Boolclassy-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.
-
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.