| 583 | return lhs.compare(rhs) != 0; |
| 584 | } |
| 585 | friend auto operator<(basic_string_view lhs, basic_string_view rhs) -> bool { |
| 586 | return lhs.compare(rhs) < 0; |
| 587 | } |
| 588 | friend auto operator<=(basic_string_view lhs, basic_string_view rhs) -> bool { |
| 589 | return lhs.compare(rhs) <= 0; |
| 590 | } |