| 85 | |
| 86 | template <typename T, std::size_t N> |
| 87 | constexpr bool operator==(const array<T, N>& lhs, const array<T, N>& rhs) |
| 88 | { |
| 89 | return equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); |
| 90 | } |
| 91 | |
| 92 | template <typename T, std::size_t N> |
| 93 | constexpr bool operator!=(const array<T, N>& lhs, const array<T, N>& rhs) |