| 3569 | } |
| 3570 | template <typename T> |
| 3571 | GeneratorWrapper<T> values(std::initializer_list<T> values) { |
| 3572 | return GeneratorWrapper<T>(pf::make_unique<FixedValuesGenerator<T>>(values)); |
| 3573 | } |
| 3574 | |
| 3575 | template<typename T> |
| 3576 | class Generators : public IGenerator<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected