| 1264 | |
| 1265 | template <typename T, typename U> |
| 1266 | inline optional_constexpr bool operator<(optional<T> const &x, optional<U> const &y) { |
| 1267 | return (!y) ? false : (!x) ? true : *x < *y; |
| 1268 | } |
| 1269 | |
| 1270 | template <typename T, typename U> |
| 1271 | inline optional_constexpr bool operator>(optional<T> const &x, optional<U> const &y) { |
nothing calls this directly
no outgoing calls
no test coverage detected