Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Utility functions.
This module contains utility functions which might be useful elsewhere.
So far, there are only functions to determine if a String
may be a
valid XML element name.
- isXMLNameStartChar :: Char -> Bool
- isXMLNameChar :: Char -> Bool
- isXMLName :: [Char] -> Bool
Documentation
isXMLNameStartChar :: Char -> Bool Source #
This function returns True
is its input is a valid character at the
beginning of an XML element name.
isXMLNameChar :: Char -> Bool Source #
This function returns True
is its input is a valid character
within an XML element name.