| 1295 | |
| 1296 | template< typename T, typename U > |
| 1297 | inline optional_constexpr bool operator>( optional<T> const & x, optional<U> const & y ) |
| 1298 | { |
| 1299 | return (y < x); |
| 1300 | } |
| 1301 | |
| 1302 | template< typename T, typename U > |
| 1303 | inline optional_constexpr bool operator<=( optional<T> const & x, optional<U> const & y ) |
nothing calls this directly
no outgoing calls
no test coverage detected