| 10577 | typedef ParamIterator<T> iterator; |
| 10578 | |
| 10579 | explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {} |
| 10580 | ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} |
| 10581 | |
| 10582 | ParamGenerator& operator=(const ParamGenerator& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected