| 1386 | #if (!defined BOOST_NO_CXX11_REF_QUALIFIERS) && (!defined BOOST_OPTIONAL_DETAIL_NO_RVALUE_REFERENCES) |
| 1387 | template <typename F> |
| 1388 | value_type value_or_eval ( F f ) const& |
| 1389 | { |
| 1390 | if (this->is_initialized()) |
| 1391 | return get(); |
| 1392 | else |
| 1393 | return f(); |
| 1394 | } |
| 1395 | |
| 1396 | template <typename F> |
| 1397 | value_type value_or_eval ( F f ) && |
nothing calls this directly
no test coverage detected