| 433 | } |
| 434 | |
| 435 | [[nodiscard]] friend constexpr bool operator==(const array& a1, const array& a2) { return detail::equal(a1, a2); } |
| 436 | |
| 437 | [[nodiscard]] friend constexpr bool operator!=(const array& a1, const array& a2) { return !detail::equal(a1, a2); } |
| 438 |
nothing calls this directly
no outgoing calls
no test coverage detected