| 10160 | typedef ParamIterator<T> iterator; |
| 10161 | |
| 10162 | explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {} |
| 10163 | ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} |
| 10164 | |
| 10165 | ParamGenerator& operator=(const ParamGenerator& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected