| 1274 | |
| 1275 | template <typename T, typename U> |
| 1276 | inline optional_constexpr bool operator<=(optional<T> const &x, optional<U> const &y) { |
| 1277 | return !(y < x); |
| 1278 | } |
| 1279 | |
| 1280 | template <typename T, typename U> |
| 1281 | inline optional_constexpr bool operator>=(optional<T> const &x, optional<U> const &y) { |
nothing calls this directly
no outgoing calls
no test coverage detected