This commit is contained in:
Branimir Karadžić
2017-09-30 20:28:12 -07:00
parent d0c30a9209
commit 3e132964d2
3 changed files with 87 additions and 5 deletions

View File

@@ -49,6 +49,9 @@ namespace bx
///
void set(const char* _ptr, const char* _term);
///
void set(const StringView& _str);
///
void clear();
@@ -105,24 +108,45 @@ namespace bx
///
bool isSpace(char _ch);
///
bool isSpace(const StringView& _str);
///
bool isUpper(char _ch);
///
bool isUpper(const StringView& _str);
///
bool isLower(char _ch);
///
bool isLower(const StringView& _str);
///
bool isAlpha(char _ch);
///
bool isAlpha(const StringView& _str);
///
bool isNumeric(char _ch);
///
bool isNumeric(const StringView& _str);
///
bool isAlphaNum(char _ch);
///
bool isAlphaNum(const StringView& _str);
///
bool isPrint(char _ch);
///
bool isPrint(const StringView& _str);
///
char toLower(char _ch);