| 1240 | inline bool operator<(const String& lhs, std::nullptr_t) = delete; |
| 1241 | |
| 1242 | inline bool operator<(const String& lhs, const std::string& rhs) { return lhs.compare(rhs) < 0; } |
| 1243 | |
| 1244 | inline bool operator<(const std::string& lhs, const String& rhs) { return rhs.compare(lhs) > 0; } |
| 1245 |