| 260 | // Inequality comparison with another not_null |
| 261 | template<typename U> |
| 262 | constexpr bool operator!=(const not_null<U>& other) const FL_NOEXCEPT { |
| 263 | return mPtr != other.get(); |
| 264 | } |
| 265 | |
| 266 | // Equality comparison with raw pointer |
| 267 | template<typename U> |