| 606 | int String::compare (const char* const other) const noexcept { return text.compare (CharPointer_UTF8 (other)); } |
| 607 | int String::compare (const wchar_t* const other) const noexcept { return text.compare (castToCharPointer_wchar_t (other)); } |
| 608 | int String::compareIgnoreCase (const String& other) const noexcept { return (text == other.text) ? 0 : text.compareIgnoreCase (other.text); } |
| 609 | |
| 610 | static int stringCompareRight (String::CharPointerType s1, String::CharPointerType s2) noexcept |
| 611 | { |
no outgoing calls
no test coverage detected