| 1283 | |
| 1284 | template< typename T, typename U > |
| 1285 | inline optional_constexpr bool operator!=( optional<T> const & x, optional<U> const & y ) |
| 1286 | { |
| 1287 | return !(x == y); |
| 1288 | } |
| 1289 | |
| 1290 | template< typename T, typename U > |
| 1291 | inline optional_constexpr bool operator<( optional<T> const & x, optional<U> const & y ) |
nothing calls this directly
no outgoing calls
no test coverage detected