util/CharUtil: add IsUpperAlphaNumericASCII()
This commit is contained in:
parent
aef2c5dc14
commit
7f60acdfdd
|
@ -97,6 +97,12 @@ IsAlphaNumericASCII(char ch) noexcept
|
|||
return IsAlphaASCII(ch) || IsDigitASCII(ch);
|
||||
}
|
||||
|
||||
constexpr bool
|
||||
IsUpperAlphaNumericASCII(char ch) noexcept
|
||||
{
|
||||
return IsUpperAlphaASCII(ch) || IsDigitASCII(ch);
|
||||
}
|
||||
|
||||
constexpr bool
|
||||
IsLowerAlphaNumericASCII(char ch) noexcept
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue