| 1516 | } |
| 1517 | |
| 1518 | template <class F> expected constexpr or_else(F &&f) const & { |
| 1519 | return or_else_impl(*this, std::forward<F>(f)); |
| 1520 | } |
| 1521 | |
| 1522 | #ifndef TL_EXPECTED_NO_CONSTRR |
| 1523 | template <class F> expected constexpr or_else(F &&f) const && { |
nothing calls this directly
no test coverage detected