Returns a copy of the value if this is initialized, 'v' otherwise
| 1271 | |
| 1272 | // Returns a copy of the value if this is initialized, 'v' otherwise |
| 1273 | reference_const_type get_value_or ( reference_const_type v ) const { return this->is_initialized() ? get() : v ; } |
| 1274 | reference_type get_value_or ( reference_type v ) { return this->is_initialized() ? get() : v ; } |
| 1275 | |
| 1276 | // Returns a pointer to the value if this is initialized, otherwise, |
nothing calls this directly
no test coverage detected