Rudiments
|
Static Public Member Functions | |
static bool | isAlphanumeric (int32_t c) |
static bool | isAlphabetical (int32_t c) |
static bool | isAlphabeticalExtended (int32_t c) |
static bool | isLowerCase (int32_t c) |
static bool | isLowerCaseExtended (int32_t c) |
static bool | isUpperCase (int32_t c) |
static bool | isUpperCaseExtended (int32_t c) |
static bool | isPunctuation (int32_t c) |
static bool | isPrintable (int32_t c) |
static bool | isPrintableNonSpace (int32_t c) |
static bool | isControlCharacter (int32_t c) |
static bool | isDigit (int32_t c) |
static bool | isHexDigit (int32_t c) |
static bool | isBlank (int32_t c) |
static bool | isWhitespace (int32_t c) |
static bool | isAscii (int32_t c) |
static int32_t | toUpperCase (int32_t c) |
static int32_t | toLowerCase (int32_t c) |
static int32_t | toAscii (int32_t c) |
static bool | inSet (wchar_t c, const wchar_t *set) |
static wchar_t | duplicate (char c) |
static bool | supported () |
The wcharacter class provides static methods for evaluating and manipulating wide characters.
|
static |
Returns the wide character representation of "c".
|
static |
Returns true if "c" is in the set of characters in "set" and false otherwise.
|
static |
Returns true if "c" is alphabetical character and false otherwise.
|
static |
Returns true if "c" is alphabetical character, including accented alphabetical characters from the extended ascii character set, and false otherwise.
|
static |
Returns true if "c" is an alphanumeric character and false otherwise.
|
static |
Returns true if "c" is one of the values in the ascii character set or false otherwise.
|
static |
Returns true if "c" is a space or tab and false otherwise.
|
static |
Returns true if "c" is a control character and false otherwise.
|
static |
Returns true if "c" is a digit and false otherwise.
|
static |
Returns true if "c" is a hexadecimal digit and false otherwise.
|
static |
Returns true if "c" is lower case and false otherwise.
|
static |
Returns true if "c" is lower case, including accented alphabetical characters from the extended ascii character set, and false otherwise.
|
static |
Returns true if "c" is a printable character and false otherwise.
|
static |
Returns true if "c" is a printable character other than a space and false otherwise.
|
static |
Returns true if "c" is a printable character that is not a space or alphanumeric character and false otherwise.
|
static |
Returns true if "c" is upper case and false otherwise.
|
static |
Returns true if "c" is upper case, including accented alphabetical characters from the extended ascii character set, and false otherwise.
|
static |
Returns true if "c" is any whitespace character and false otherwise.
|
static |
Returns true if the platform supports wide characters and rudiments was build with wide character support and false otherwise.
|
static |
Converts "c" to a 7-bit value by clearing the higher order bits.
|
static |
Returns the lower case version of "c".
|
static |
Returns the upper case version of "c".