Functions | |
| bool | SameText (PCChar8 textA, PCChar8 textB, bool ignoreCase=true) |
| Compare a string to another. More... | |
| bool | operator== (const BaseStaticString &string1, const BaseStaticString &string2) |
| Equality operator. More... | |
| bool | operator!= (const BaseStaticString &string1, const BaseStaticString &string2) |
| Not equality operator. More... | |
| bool | operator< (const BaseStaticString &string1, const BaseStaticString &string2) |
| Less-than comparison operator. More... | |
| bool | operator<= (const BaseStaticString &string1, const BaseStaticString &string2) |
| Less-than-or-equal comparison operator. More... | |
| bool | operator> (const BaseStaticString &string1, const BaseStaticString &string2) |
| Greater-than comparison operator. More... | |
| bool | operator>= (const BaseStaticString &string1, const BaseStaticString &string2) |
| Greater-than-or-equal comparison operator. More... | |
| bool | operator== (const BaseStaticString &string1, PCChar8 string2) |
| Equality operator. More... | |
| bool | operator== (PCChar8 string1, const BaseStaticString &string2) |
| Equality operator. More... | |
| bool | operator!= (const BaseStaticString &string1, PCChar8 string2) |
| Not equality operator. More... | |
| bool | operator!= (PCChar8 string1, const BaseStaticString &string2) |
| Not equality operator. More... | |
| bool | operator< (const BaseStaticString &string1, PCChar8 string2) |
| Less-than comparison operator. More... | |
| bool | operator< (PCChar8 string1, const BaseStaticString &string2) |
| Less-than comparison operator. More... | |
| bool | operator> (const BaseStaticString &string1, PCChar8 string2) |
| Greater-than comparison operator. More... | |
| bool | operator> (PCChar8 string1, const BaseStaticString &string2) |
| Greater-than comparison operator. More... | |
| bool | operator<= (const BaseStaticString &string1, PCChar8 string2) |
| Less-than-or-equal comparison operator. More... | |
| bool | operator<= (PCChar8 string1, const BaseStaticString &string2) |
| Less-than-or-equal comparison operator. More... | |
| bool | operator>= (const BaseStaticString &s1, PCChar8 string2) |
| Greater-than-or-equal comparison operator. More... | |
| bool | operator>= (PCChar8 string1, const BaseStaticString &string2) |
| Greater-than-or-equal comparison operator. More... | |
| bool operator!= | ( | const BaseStaticString & | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Not equality operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator!= | ( | const BaseStaticString & | string1, |
| PCChar8 | string2 | ||
| ) |
Not equality operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator!= | ( | PCChar8 | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Not equality operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator< | ( | const BaseStaticString & | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Less-than comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator< | ( | const BaseStaticString & | string1, |
| PCChar8 | string2 | ||
| ) |
Less-than comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator< | ( | PCChar8 | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Less-than comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator<= | ( | const BaseStaticString & | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Less-than-or-equal comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator<= | ( | const BaseStaticString & | string1, |
| PCChar8 | string2 | ||
| ) |
Less-than-or-equal comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator<= | ( | PCChar8 | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Less-than-or-equal comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator== | ( | const BaseStaticString & | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Equality operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator== | ( | const BaseStaticString & | string1, |
| PCChar8 | string2 | ||
| ) |
Equality operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator== | ( | PCChar8 | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Equality operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator> | ( | const BaseStaticString & | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Greater-than comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator> | ( | const BaseStaticString & | string1, |
| PCChar8 | string2 | ||
| ) |
Greater-than comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator> | ( | PCChar8 | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Greater-than comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator>= | ( | const BaseStaticString & | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Greater-than-or-equal comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator>= | ( | const BaseStaticString & | s1, |
| PCChar8 | string2 | ||
| ) |
Greater-than-or-equal comparison operator.
| s1 | The first instance to compare. |
| string2 | The second instance to compare. |
| bool operator>= | ( | PCChar8 | string1, |
| const BaseStaticString & | string2 | ||
| ) |
Greater-than-or-equal comparison operator.
| string1 | The first instance to compare. |
| string2 | The second instance to compare. |
Compare a string to another.
| textA | First text. NULL supported. |
| textB | Second text. NULL supported. |
| ignoreCase | Ignore the case while comparing characters. |
true is the first text and the second text are the same.