@brief Computes the lexicographic ordering between this and the @p other string. */
| 3117 | |
| 3118 | /** @brief Computes the lexicographic ordering between this and the @p other string. */ |
| 3119 | std::strong_ordering operator<=>(basic_string const &other) const noexcept { return view() <=> other.view(); } |
| 3120 | std::strong_ordering operator<=>(string_view other) const noexcept { return view() <=> other; } |
| 3121 | std::strong_ordering operator<=>(const_pointer other) const noexcept { return view() <=> string_view(other); } |
| 3122 |