| 1054 | intptr LastIndexOf(char c, intptr startCheck) const; |
| 1055 | |
| 1056 | StringSplitEnumerator Split(char c) |
| 1057 | { |
| 1058 | return StringSplitEnumerator(GetPtr(), mLength, c, 0x7FFFFFFF, false); |
| 1059 | } |
| 1060 | |
| 1061 | bool Contains(char c) const |
| 1062 | { |
nothing calls this directly
no test coverage detected