Expand description
Contains common types and functions used throughout the library.
Structs§
- Text
Position - Represents a position inside some textual document.
Enums§
- XmlVersion
- XML version enumeration.
Traits§
- Position
- Get the position in the document corresponding to the object
Functions§
- is_
name_ char - Checks whether the given character is a name character (
NameChar
) as is defined by XML 1.1 specification, section 2.3. - is_
name_ start_ char - Checks whether the given character is a name start character (
NameStartChar
) as is defined by XML 1.1 specification, section 2.3. - is_
whitespace_ char - Checks whether the given character is a white space character (
S
) as is defined by XML 1.1 specification, section 2.3. - is_
whitespace_ str - Checks whether the given string is compound only by white space
characters (
S
) using the previousis_whitespace_char
to check all characters of this string - is_
xml10_ char - Is it a valid character in XML 1.0
- is_
xml11_ char - Is it a valid character in XML 1.1
- is_
xml11_ char_ not_ restricted - Is it a valid character in XML 1.1 but not part of the restricted character set