| 1435 | } |
| 1436 | |
| 1437 | template <class F> expected constexpr or_else(F &&f) const & { |
| 1438 | return or_else_impl(*this, std::forward<F>(f)); |
| 1439 | } |
| 1440 | |
| 1441 | #ifndef TL_EXPECTED_NO_CONSTRR |
| 1442 | template <class F> expected constexpr or_else(F &&f) const && { |
nothing calls this directly
no test coverage detected