| 230 | } |
| 231 | |
| 232 | bool string::operator<=(const string& other) const FL_NOEXCEPT { |
| 233 | return string_compare(*this, other) <= 0; |
| 234 | } |
| 235 | |
| 236 | bool string::operator==(const string& other) const FL_NOEXCEPT { |
| 237 | if (size() != other.size()) { |
nothing calls this directly
no test coverage detected