| 42 | bool has_value() const FL_NOEXCEPT { return !empty(); } // std::optional compatibility |
| 43 | T *ptr() FL_NOEXCEPT { return mValue.template ptr<T>(); } |
| 44 | const T *ptr() const FL_NOEXCEPT { return mValue.template ptr<T>(); } |
| 45 | |
| 46 | void reset() FL_NOEXCEPT { mValue.reset(); } |
| 47 |
no outgoing calls
no test coverage detected