| 1436 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 1437 | template <class F> |
| 1438 | TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) & { |
| 1439 | return expected_map_impl(*this, std::forward<F>(f)); |
| 1440 | } |
| 1441 | template <class F> |
| 1442 | TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) && { |
| 1443 | return expected_map_impl(std::move(*this), std::forward<F>(f)); |
nothing calls this directly
no test coverage detected