| 393 | int len; |
| 394 | const char *ptr; |
| 395 | Finder(int len, const char *inPtr) : len(len), ptr(inPtr) { } |
| 396 | bool operator==(const String &inStr) const |
| 397 | { |
| 398 | return len == inStr.length && !memcmp(ptr, inStr.__s, len*sizeof(char)); |
nothing calls this directly
no outgoing calls
no test coverage detected