@brief Checks if the string is equal to the other string. */
| 2038 | |
| 2039 | /** @brief Checks if the string is equal to the other string. */ |
| 2040 | bool operator==(string_view other) const noexcept { |
| 2041 | return size() == other.size() && sz_equal(data(), other.data(), other.size()) == sz_true_k; |
| 2042 | } |
| 2043 | |
| 2044 | /** @brief Checks if the string is equal to a concatenation of two strings. */ |
| 2045 | bool operator==(concatenation<string_view, string_view> const &other) const noexcept { |