| 10123 | return ParamIterator(clone); |
| 10124 | } |
| 10125 | bool operator==(const ParamIterator& other) const { |
| 10126 | return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); |
| 10127 | } |
| 10128 | bool operator!=(const ParamIterator& other) const { |
| 10129 | return !(*this == other); |
| 10130 | } |