| 265 | |
| 266 | constexpr bool initialized() const noexcept { return OptionalBase<T>::init_; } |
| 267 | T* dataptr() { return std::addressof(OptionalBase<T>::storage_.value_); } |
| 268 | constexpr const T* dataptr() const { return static_addressof(OptionalBase<T>::storage_.value_); } |
| 269 | |
| 270 | # if OPTIONAL_HAS_THIS_RVALUE_REFS == 1 |
nothing calls this directly
no test coverage detected