| 140 | bool basic_string::operator<(const basic_string& other) const { return fl::strcmp(c_str(), other.c_str()) < 0; } |
| 141 | bool basic_string::operator>(const basic_string& other) const { return fl::strcmp(c_str(), other.c_str()) > 0; } |
| 142 | bool basic_string::operator<=(const basic_string& other) const { return fl::strcmp(c_str(), other.c_str()) <= 0; } |
| 143 | bool basic_string::operator>=(const basic_string& other) const { return fl::strcmp(c_str(), other.c_str()) >= 0; } |
| 144 | |
| 145 | bool basic_string::operator==(const char* other) const { return fl::strcmp(c_str(), other ? other : "") == 0; } |