Returns a copy of the value if this is initialized, 'v' otherwise
| 632 | |
| 633 | // Returns a copy of the value if this is initialized, 'v' otherwise |
| 634 | reference_const_type get_value_or ( reference_const_type v ) const { return this->is_initialized() ? get() : v ; } |
| 635 | reference_type get_value_or ( reference_type v ) { return this->is_initialized() ? get() : v ; } |
| 636 | |
| 637 | // Returns a pointer to the value if this is initialized, otherwise, |
no test coverage detected