* @brief Compares two strings lexicographically. If prefix matches, lengths are compared. * @return 0 if equal, negative if `*this` is less than `other`, positive if `*this` is greater than `other`. */
| 3060 | * @return 0 if equal, negative if `*this` is less than `other`, positive if `*this` is greater than `other`. |
| 3061 | */ |
| 3062 | int compare(string_view other) const noexcept { return view().compare(other); } |
| 3063 | |
| 3064 | /** |
| 3065 | * @brief Compares two strings lexicographically. If prefix matches, lengths are compared. |
no outgoing calls