| 3185 | |
| 3186 | template <class F> |
| 3187 | expected constexpr or_else(F &&f) const & { |
| 3188 | return or_else_impl(*this, std::forward<F>(f)); |
| 3189 | } |
| 3190 | |
| 3191 | #ifndef TL_EXPECTED_NO_CONSTRR |
| 3192 | template <class F> |
nothing calls this directly
no test coverage detected