| 3675 | |
| 3676 | template <typename T> |
| 3677 | GeneratorWrapper<T> take(size_t target, GeneratorWrapper<T>&& generator) { |
| 3678 | return GeneratorWrapper<T>(pf::make_unique<TakeGenerator<T>>(target, std::move(generator))); |
| 3679 | } |
| 3680 | |
| 3681 | template <typename T, typename Predicate> |
| 3682 | class FilterGenerator : public IGenerator<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected