Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
xml-conduit Text.XML.Stream.Parse Like many but discards the results without building an intermediate list. Since 1.5.0
takeAnyTreeContent :: forall (m :: Type -> Type) . MonadThrow m => ConduitT Event Event m (Maybe ())xml-conduit Text.XML.Stream.Parse Like takeTreeContent, without checking for tag name or attributes.
>>> runConduit $ parseLBS def "text<a></a>" .| void takeAnyTreeContent .| sinkList [EventBeginDocument,EventContent (ContentText "text")]
>>> runConduit $ parseLBS def "</a><b></b>" .| void takeAnyTreeContent .| sinkList [EventBeginDocument]
>>> runConduit $ parseLBS def "<b><c></c></b></a>text" .| void takeAnyTreeContent .| sinkList [EventBeginDocument,EventBeginElement (Name {nameLocalName = "b", ...}) [],EventBeginElement (Name {nameLocalName = "c", ...}) [],EventEndElement (Name {nameLocalName = "c", ...}),EventEndElement (Name {nameLocalName = "b", ...})]Since 1.5.0TooManyHeaderLines :: Int -> RequestParseExceptionwai-extra Network.Wai.Parse No documentation available.
trans_many :: Transition -> DFAregex-tdfa Text.Regex.TDFA.Common where to go (maximal), including respawning
PAny :: DoPa -> PatternSet -> Patternregex-tdfa Text.Regex.TDFA.Pattern Bracket expression [...].
PAnyNot :: DoPa -> PatternSet -> Patternregex-tdfa Text.Regex.TDFA.Pattern Inverted bracket expression [^...].
Many :: [Capture ann] -> Capture anncmdargs System.Console.CmdArgs.Annotate many :: Data val => [val] -> valcmdargs System.Console.CmdArgs.Annotate Collapse multiple values in to one.
many_ :: [Annotate a] -> Annotate acmdargs System.Console.CmdArgs.Annotate Collapse many annotated values in to one.
iany :: FoldableWithIndex i f => (i -> a -> Bool) -> f a -> Boolindexed-traversable Data.Foldable.WithIndex Return whether or not any element in a container satisfies a predicate, with access to the index i. When you don't need access to the index then any is more flexible in what it accepts.
any ≡ iany . const