| 2939 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 2940 | template <class F> |
| 2941 | TL_EXPECTED_11_CONSTEXPR auto and_then(F &&f) & { |
| 2942 | return and_then_impl(*this, std::forward<F>(f)); |
| 2943 | } |
| 2944 | template <class F> |
| 2945 | TL_EXPECTED_11_CONSTEXPR auto and_then(F &&f) && { |
| 2946 | return and_then_impl(std::move(*this), std::forward<F>(f)); |
nothing calls this directly
no test coverage detected