| 1289 | |
| 1290 | template< typename T, typename U > |
| 1291 | inline optional_constexpr bool operator<( optional<T> const & x, optional<U> const & y ) |
| 1292 | { |
| 1293 | return (!y) ? false : (!x) ? true : *x < *y; |
| 1294 | } |
| 1295 | |
| 1296 | template< typename T, typename U > |
| 1297 | inline optional_constexpr bool operator>( optional<T> const & x, optional<U> const & y ) |
nothing calls this directly
no outgoing calls
no test coverage detected