| 1301 | |
| 1302 | template< typename T, typename U > |
| 1303 | inline optional_constexpr bool operator<=( optional<T> const & x, optional<U> const & y ) |
| 1304 | { |
| 1305 | return !(y < x); |
| 1306 | } |
| 1307 | |
| 1308 | template< typename T, typename U > |
| 1309 | inline optional_constexpr bool operator>=( optional<T> const & x, optional<U> const & y ) |
nothing calls this directly
no outgoing calls
no test coverage detected