| 1269 | |
| 1270 | template <typename T, typename U> |
| 1271 | inline optional_constexpr bool operator>(optional<T> const &x, optional<U> const &y) { |
| 1272 | return (y < x); |
| 1273 | } |
| 1274 | |
| 1275 | template <typename T, typename U> |
| 1276 | inline optional_constexpr bool operator<=(optional<T> const &x, optional<U> const &y) { |
nothing calls this directly
no outgoing calls
no test coverage detected