Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
CharUtil.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_CORE_UTIL_CHARUTIL_H
4#define IMT_BASE_CORE_UTIL_CHARUTIL_H
5
9#include <utility>
10
11namespace imt {
12namespace base {
13namespace core {
14namespace util {
15
21
22public:
23
28
35 static Optional toInt(char8_t const asciiHexChar);
36
43 static Optional toInt(char16_t const asciiHexChar);
44
51 static Optional toInt(char32_t const asciiHexChar);
52
61 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for string.
62 static Optional toInt(char8_t const* const pAsciiChars, size_t const nrOfChars);
63
72 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for string.
73 static Optional toInt(char16_t const* const pAsciiChars, size_t const nrOfChars);
74
83 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for string.
84 static Optional toInt(char32_t const* const pAsciiChars, size_t const nrOfChars);
85
93 static char8_t toAsciiHex(int32_t const value);
94
100 static bool isDigit(char8_t const chr);
101
107 static bool isDigit(char16_t const chr);
108
114 static bool isDigit(char32_t const chr);
115
121 static bool isHexDigit(char8_t const chr);
122
128 static bool isHexDigit(char16_t const chr);
129
135 static bool isHexDigit(char32_t const chr);
136
143 static bool isLetter(char8_t const chr);
144
151 static bool isUppercaseLetter(char8_t const chr);
152
159 static bool isLowercaseLetter(char8_t const chr);
160
167 static bool isLineBreak(char8_t const chr);
168
175 static bool isWhiteSpace(char8_t const chr);
176
183 static bool isPunctuation(char8_t const chr);
184};
185
186} // namespace util
187} // namespace core
188} // namespace base
189} // namespace imt
190
191#endif // IMT_BASE_CORE_UTIL_CHARUTIL_H
Base class for a static class that disables construction, copy, assignment and move of instances.
Definition StaticClass.h:48
String Utility class pure static class.
Definition CharUtil.h:20
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.
Definition Optional.h:21
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60