Returns a pointer to the value if this is initialized, otherwise, the behaviour is UNDEFINED No-throw
| 1277 | // the behaviour is UNDEFINED |
| 1278 | // No-throw |
| 1279 | pointer_const_type operator->() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } |
| 1280 | pointer_type operator->() { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } |
| 1281 | |
| 1282 | // Returns a reference to the value if this is initialized, otherwise, |
no test coverage detected