| 4098 | |
| 4099 | template <typename T> |
| 4100 | GeneratorWrapper<T> take(size_t target, GeneratorWrapper<T>&& generator) { |
| 4101 | return GeneratorWrapper<T>(pf::make_unique<TakeGenerator<T>>(target, std::move(generator))); |
| 4102 | } |
| 4103 | |
| 4104 | template <typename T, typename Predicate> |
| 4105 | class FilterGenerator : public IGenerator<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected