| 1277 | |
| 1278 | template< typename T, typename U > |
| 1279 | inline optional_constexpr bool operator==( optional<T> const & x, optional<U> const & y ) |
| 1280 | { |
| 1281 | return bool(x) != bool(y) ? false : !bool( x ) ? true : *x == *y; |
| 1282 | } |
| 1283 | |
| 1284 | template< typename T, typename U > |
| 1285 | inline optional_constexpr bool operator!=( optional<T> const & x, optional<U> const & y ) |
nothing calls this directly
no outgoing calls
no test coverage detected