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.

  1. TokAnyClose :: TokenT

    HaXml Text.XML.HaXml.Lex

    
    

  2. TokAnyOpen :: TokenT

    HaXml Text.XML.HaXml.Lex

    <

  3. UnconvertedANY :: Content Posn -> AnyElement

    HaXml Text.XML.HaXml.Schema.Schema

    No documentation available.

  4. parseAnyElement :: XMLParser AnyElement

    HaXml Text.XML.HaXml.Schema.Schema

    No documentation available.

  5. toXMLAnyElement :: AnyElement -> [Content ()]

    HaXml Text.XML.HaXml.Schema.Schema

    No documentation available.

  6. HasAny :: Any -> ElementEtc

    HaXml Text.XML.HaXml.Schema.XSDTypeModel

    No documentation available.

  7. hasAny :: Eq a => [a] -> [a] -> Bool

    MissingH Data.List.Utils

    Returns true if the given list contains any of the elements in the search list.

  8. fromAny :: String -> Identifier String

    casing Text.Casing

    Convert from anything, including mixed casing.

  9. 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))
    

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

Page 144 of many | Previous | Next