| 324 | void Remove(size_t index, size_t remlen); |
| 325 | |
| 326 | int Compare (const FString &other) const { return strcmp (Chars, other.Chars); } |
| 327 | int Compare (const char *other) const { return strcmp (Chars, other); } |
| 328 | int Compare(const FString &other, size_t len) const { return strncmp(Chars, other.Chars, len); } |
| 329 | int Compare(const char *other, size_t len) const { return strncmp(Chars, other, len); } |
no outgoing calls
no test coverage detected