Expand description
ASCII character predicates.
Structs§
- Alphabetic
- Checks whether the given character is ASCII alphabetic.
- Alphabetic
Error - Non-ASCII-alphabetic character encountered.
- Alphanumeric
- Checks whether the given character is ASCII alphanumeric.
- Alphanumeric
Error - Non-ASCII-alphanumeric character encountered.
- Control
- Checks whether the given character is ASCII control.
- Control
Error - Non-ASCII-control character encountered.
- Digit
- Checks whether the given character is a digit in the specified base
B. - Digit
Error - Non-digit character encountered in the given
base. - Graphic
- Checks whether the given character is ASCII graphic.
- Graphic
Error - Non-ASCII-graphic character encountered.
- Lowercase
- Checks whether the given character is ASCII lowercase.
- Lowercase
Error - Non-ASCII-lowercase character encountered.
- Punctuation
- Checks whether the given character is ASCII punctuation.
- Punctuation
Error - Non-ASCII-punctuation character encountered.
- Uppercase
- Checks whether the given character is ASCII uppercase.
- Uppercase
Error - Non-ASCII-uppercase character encountered.
- Whitespace
- Checks whether the given character is ASCII whitespace.
- Whitespace
Error - Non-ASCII-whitespace character encountered.