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.

  1. many_ :: forall (m :: Type -> Type) o a . MonadThrow m => ConduitT Event o m (Maybe a) -> ConduitT Event o m ()

    xml-conduit Text.XML.Stream.Parse

    Like many but discards the results without building an intermediate list. Since 1.5.0

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

  3. TooManyHeaderLines :: Int -> RequestParseException

    wai-extra Network.Wai.Parse

    No documentation available.

  4. trans_many :: Transition -> DFA

    regex-tdfa Text.Regex.TDFA.Common

    where to go (maximal), including respawning

  5. PAny :: DoPa -> PatternSet -> Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    Bracket expression [...].

  6. PAnyNot :: DoPa -> PatternSet -> Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    Inverted bracket expression [^...].

  7. Many :: [Capture ann] -> Capture ann

    cmdargs System.Console.CmdArgs.Annotate

    Many values collapsed (many or many_)

  8. many :: Data val => [val] -> val

    cmdargs System.Console.CmdArgs.Annotate

    Collapse multiple values in to one.

  9. many_ :: [Annotate a] -> Annotate a

    cmdargs System.Console.CmdArgs.Annotate

    Collapse many annotated values in to one.

  10. iany :: FoldableWithIndex i f => (i -> a -> Bool) -> f a -> Bool

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

    anyiany . const
    

Page 123 of many | Previous | Next