| 73 | |
| 74 | template <typename T> |
| 75 | constexpr bool operator==(const basic_string_view<T>& lhs, const basic_string_view<T>& rhs) |
| 76 | { |
| 77 | return equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); |
| 78 | } |
| 79 | |
| 80 | template <typename T> |
| 81 | constexpr bool operator!=(const basic_string_view<T>& lhs, const basic_string_view<T>& rhs) |