| 3035 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 3036 | template <class F> |
| 3037 | TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) & { |
| 3038 | return expected_map_impl(*this, std::forward<F>(f)); |
| 3039 | } |
| 3040 | template <class F> |
| 3041 | TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) && { |
| 3042 | return expected_map_impl(std::move(*this), std::forward<F>(f)); |
nothing calls this directly
no test coverage detected