![]() |
Ark Server API (ASA) - Wiki
|
#include <Char.h>
Inheritance diagram for TChar< CharType >:
Collaboration diagram for TChar< CharType >:Public Member Functions | |
| bool | IsUpper (WIDECHAR Char) |
| bool | IsLower (WIDECHAR Char) |
| bool | IsAlpha (WIDECHAR Char) |
| bool | IsGraph (WIDECHAR Char) |
| bool | IsPrint (WIDECHAR Char) |
| bool | IsPunct (WIDECHAR Char) |
| bool | IsAlnum (WIDECHAR Char) |
| bool | IsDigit (WIDECHAR Char) |
| bool | IsHexDigit (WIDECHAR Char) |
| bool | IsWhitespace (WIDECHAR Char) |
| bool | IsControl (WIDECHAR Char) |
| bool | IsUpper (ANSICHAR Char) |
| bool | IsLower (ANSICHAR Char) |
| bool | IsAlpha (ANSICHAR Char) |
| bool | IsGraph (ANSICHAR Char) |
| bool | IsPrint (ANSICHAR Char) |
| bool | IsPunct (ANSICHAR Char) |
| bool | IsAlnum (ANSICHAR Char) |
| bool | IsDigit (ANSICHAR Char) |
| bool | IsHexDigit (ANSICHAR Char) |
| bool | IsWhitespace (ANSICHAR Char) |
| bool | IsControl (ANSICHAR Char) |
| bool | IsWhitespace (UTF8CHAR Char) |
Static Public Member Functions | |
| static CharType | ToUpper (CharType Char) |
| static CharType | ToLower (CharType Char) |
| static bool | IsUpper (CharType Char) |
| static bool | IsLower (CharType Char) |
| static bool | IsAlpha (CharType Char) |
| static bool | IsGraph (CharType Char) |
| static bool | IsPrint (CharType Char) |
| static bool | IsPunct (CharType Char) |
| static bool | IsAlnum (CharType Char) |
| static bool | IsDigit (CharType Char) |
| static bool | IsHexDigit (CharType Char) |
| static bool | IsWhitespace (CharType Char) |
| static bool | IsControl (CharType Char) |
| static bool | IsOctDigit (CharType Char) |
| static int32 | ConvertCharDigitToInt (CharType Char) |
| static bool | IsIdentifier (CharType Char) |
| static bool | IsUnderscore (CharType Char) |
| static constexpr FORCEINLINE uint32 | ToUnsigned (CharType Char) |
Static Public Member Functions inherited from TCharBase< CharType, sizeof(CharType)> | |
| static bool | IsLinebreak (CharType Char) |
Additional Inherited Members | |
Static Public Attributes inherited from TCharBase< CharType, sizeof(CharType)> | |
| static constexpr CharType | LineFeed |
| static constexpr CharType | VerticalTab |
| static constexpr CharType | FormFeed |
| static constexpr CharType | CarriageReturn |
| static constexpr CharType | NextLine |
| static constexpr CharType | LineSeparator |
| static constexpr CharType | ParagraphSeparator |
TChar Set of utility functions operating on a single character. The functions are specialized for ANSICHAR and TCHAR character types. You can use the typedefs FChar and FCharAnsi for convenience.