| 443 | [[nodiscard]] friend constexpr bool operator>(const array& a1, const array& a2) { return detail::lexicographical_compare(a2, a1); } |
| 444 | |
| 445 | [[nodiscard]] friend constexpr bool operator>=(const array& a1, const array& a2) { return !detail::lexicographical_compare(a1, a2); } |
| 446 | |
| 447 | container_type a; |
| 448 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected