| 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 | |
| 712 | std::ostream& operator<<(std::ostream& s, const String& in) { return s << in.c_str(); } |