| 1380 | #if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && \ |
| 1381 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 1382 | template <class F> TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) & { |
| 1383 | return expected_map_impl(*this, std::forward<F>(f)); |
| 1384 | } |
| 1385 | template <class F> TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) && { |
| 1386 | return expected_map_impl(std::move(*this), std::forward<F>(f)); |
| 1387 | } |
nothing calls this directly
no test coverage detected