| 296 | // Greater-than-or-equal comparison |
| 297 | template<typename U> |
| 298 | constexpr bool operator>=(const not_null<U>& other) const FL_NOEXCEPT { |
| 299 | return mPtr >= other.get(); |
| 300 | } |
| 301 | }; |
| 302 | |
| 303 | /////////////////////////////////////////////////////////////////////////////// |