| 3958 | } |
| 3959 | template <typename T> |
| 3960 | GeneratorWrapper<T> values(std::initializer_list<T> values) { |
| 3961 | return GeneratorWrapper<T>(pf::make_unique<FixedValuesGenerator<T>>(values)); |
| 3962 | } |
| 3963 | |
| 3964 | template<typename T> |
| 3965 | class Generators : public IGenerator<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected