Returns a reference to the value if this is initialized, otherwise, the behaviour is UNDEFINED No-throw
| 1267 | // the behaviour is UNDEFINED |
| 1268 | // No-throw |
| 1269 | reference_const_type get() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_impl(); } |
| 1270 | reference_type get() { BOOST_ASSERT(this->is_initialized()) ; return this->get_impl(); } |
| 1271 | |
| 1272 | // Returns a copy of the value if this is initialized, 'v' otherwise |