class and global operators and functions for handling strings.
|
Classes |
| class | BString |
| | String class supporting common string operations. More...
|
Functions |
| int | Compare (const BString *a, const BString *b) |
| | Lexographically compare two strings.
|
| int | Compare (const BString &a, const BString &b) |
| | Lexographically compare two strings.
|
| int | ICompare (const BString *a, const BString *b) |
| | Lexographically compare two strings in a case insensitive way.
|
| int | ICompare (const BString &a, const BString &b) |
| | Lexographically compare two strings in a case insensitive way.
|
| bool | operator!= (const char *a, const BString &b) |
| | Lexographically compare if a is not equal to given BString.
|
| bool | operator< (const char *a, const BString &b) |
| | Lexographically compare if a is less than a given BString.
|
| bool | operator<= (const char *a, const BString &b) |
| | Lexographically compare if a is less than or equal to a given BString.
|
| bool | operator== (const char *a, const BString &b) |
| | Lexographically compare if a is equal to a given BString.
|
| bool | operator> (const char *a, const BString &b) |
| | Lexographically compare if a is more than a given BString.
|
| bool | operator>= (const char *a, const BString &b) |
| | Lexographically compare if a is more than or equal to a given BString.
|
class and global operators and functions for handling strings.