| 706 | bool operator!=(const String& lhs, const String& rhs) { return lhs.compare(rhs) != 0; } |
| 707 | bool operator< (const String& lhs, const String& rhs) { return lhs.compare(rhs) < 0; } |
| 708 | bool operator> (const String& lhs, const String& rhs) { return lhs.compare(rhs) > 0; } |
| 709 | bool operator<=(const String& lhs, const String& rhs) { return (lhs != rhs) ? lhs.compare(rhs) < 0 : true; } |
| 710 | bool operator>=(const String& lhs, const String& rhs) { return (lhs != rhs) ? lhs.compare(rhs) > 0 : true; } |
| 711 |