Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
HaXml Text.XML.HaXml.Lex -
HaXml Text.XML.HaXml.Lex <
UnconvertedANY :: Content Posn -> AnyElementHaXml Text.XML.HaXml.Schema.Schema No documentation available.
parseAnyElement :: XMLParser AnyElementHaXml Text.XML.HaXml.Schema.Schema No documentation available.
toXMLAnyElement :: AnyElement -> [Content ()]HaXml Text.XML.HaXml.Schema.Schema No documentation available.
-
HaXml Text.XML.HaXml.Schema.XSDTypeModel No documentation available.
hasAny :: Eq a => [a] -> [a] -> BoolMissingH Data.List.Utils Returns true if the given list contains any of the elements in the search list.
fromAny :: String -> Identifier Stringcasing Text.Casing Convert from anything, including mixed casing.
matchMany :: [(a, FilePattern)] -> [(b, FilePath)] -> [(a, b, [String])]filepattern System.FilePattern Efficiently match many FilePatterns against many FilePaths in a single operation. Note that the returned matches are not guaranteed to be in any particular order.
matchMany [(a, pat)] [(b, path)] == maybeToList (map (a,b,) (match pat path))
many :: Alternative f => f a -> f [a]graphviz Data.GraphViz.Parsing Zero or more.
Examples
>>> many (putStr "la") lalalalalalalalala... * goes on forever *
>>> many Nothing Just []
>>> take 5 <$> many (Just 1) * hangs forever *
Note that this function can be used with Parsers based on Applicatives. In that case many parser will attempt to parse parser zero or more times until it fails.