Returns a reference to the value if this is initialized, otherwise, the behaviour is UNDEFINED No-throw
| 1022 | // the behaviour is UNDEFINED |
| 1023 | // No-throw |
| 1024 | reference_const_type get() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_impl(); } |
| 1025 | reference_type get() { BOOST_ASSERT(this->is_initialized()) ; return this->get_impl(); } |
| 1026 | |
| 1027 | // Returns a copy of the value if this is initialized, 'v' otherwise |
no test coverage detected