@brief Checks if the string is equal to the other string. */
| 3110 | |
| 3111 | /** @brief Checks if the string is equal to the other string. */ |
| 3112 | bool operator==(basic_string const &other) const noexcept { return view() == other.view(); } |
| 3113 | bool operator==(string_view other) const noexcept { return view() == other; } |
| 3114 | bool operator==(const_pointer other) const noexcept { return view() == string_view(other); } |
| 3115 |