| 3799 | |
| 3800 | template <typename T, typename U, typename Func> |
| 3801 | GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<U>&& generator) { |
| 3802 | return GeneratorWrapper<T>( |
| 3803 | pf::make_unique<MapGenerator<T, U, Func>>(std::forward<Func>(function), std::move(generator)) |
| 3804 | ); |
| 3805 | } |
| 3806 | template <typename T, typename Func> |
| 3807 | GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<T>&& generator) { |
| 3808 | return GeneratorWrapper<T>( |
nothing calls this directly
no outgoing calls
no test coverage detected