| 234 | } |
| 235 | |
| 236 | bool string::operator==(const string& other) const FL_NOEXCEPT { |
| 237 | if (size() != other.size()) { |
| 238 | return false; |
| 239 | } |
| 240 | return fl::memcmp(c_str(), other.c_str(), size()) == 0; |
| 241 | } |
| 242 | |
| 243 | bool string::operator!=(const string& other) const FL_NOEXCEPT { |
| 244 | return !(*this == other); |