| 3767 | |
| 3768 | template <typename T> |
| 3769 | GeneratorWrapper<T> repeat(size_t repeats, GeneratorWrapper<T>&& generator) { |
| 3770 | return GeneratorWrapper<T>(pf::make_unique<RepeatGenerator<T>>(repeats, std::move(generator))); |
| 3771 | } |
| 3772 | |
| 3773 | template <typename T, typename U, typename Func> |
| 3774 | class MapGenerator : public IGenerator<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected