3#ifndef IMT_BASE_CORE_UTIL_CHARUTIL_H
4#define IMT_BASE_CORE_UTIL_CHARUTIL_H
62 static Optional toInt(
char8_t const*
const pAsciiChars,
size_t const nrOfChars);
73 static Optional toInt(
char16_t const*
const pAsciiChars,
size_t const nrOfChars);
84 static Optional toInt(
char32_t const*
const pAsciiChars,
size_t const nrOfChars);
String Utility class pure static class.
static bool isWhiteSpace(char8_t const chr)
Returns true if chr is any whitespace character.
static Optional toInt(char16_t const *const pAsciiChars, size_t const nrOfChars)
Converts an array of ASCII formatted characters to an int value.
static Optional toInt(char32_t const *const pAsciiChars, size_t const nrOfChars)
Converts an array of ASCII formatted characters to an int value.
static bool isLineBreak(char8_t const chr)
Returns true if chr is any line termination character.
static bool isDigit(char32_t const chr)
Returns true if chr is one of '0'..'9'.
static bool isHexDigit(char8_t const chr)
Returns true if chr is one of '0'..'9' or 'a'..'f' or 'A'..'F'.
static bool isHexDigit(char32_t const chr)
Returns true if chr is one of '0'..'9' or 'a'..'f' or 'A'..'F'.
static bool isDigit(char16_t const chr)
Returns true if chr is one of '0'..'9'.
static bool isPunctuation(char8_t const chr)
Returns true if chr is any punctuation character.
static Optional toInt(char32_t const asciiHexChar)
Returns the int value of an ASCII formatted hex character.
static char8_t toAsciiHex(int32_t const value)
Returns the ASCII formatted hex character of the value.
static bool isLowercaseLetter(char8_t const chr)
Returns true if chr is any ASCII lower case letter in range 'a' to 'z'.
static bool isHexDigit(char16_t const chr)
Returns true if chr is one of '0'..'9' or 'a'..'f' or 'A'..'F'.
static bool isDigit(char8_t const chr)
Returns true if chr is one of '0'..'9'.
static Optional toInt(char16_t const asciiHexChar)
Returns the int value of an ASCII formatted hex character.
static bool isUppercaseLetter(char8_t const chr)
Returns true if chr is any ASCII upper case letter in range 'A' to 'Z'.
static Optional toInt(char8_t const asciiHexChar)
Returns the int value of an ASCII formatted hex character.
static Optional toInt(char8_t const *const pAsciiChars, size_t const nrOfChars)
Converts an array of ASCII formatted characters to an int value.
static bool isLetter(char8_t const chr)
Returns true if chr is any ASCII letter in range 'A' to 'Z' or 'a' to 'z'.
Port of the std::optional type.
This is a application specific file which is used to configure Imt.Base.Core.Math.