| 10540 | return ParamIterator(clone); |
| 10541 | } |
| 10542 | bool operator==(const ParamIterator& other) const { |
| 10543 | return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); |
| 10544 | } |
| 10545 | bool operator!=(const ParamIterator& other) const { |
| 10546 | return !(*this == other); |
| 10547 | } |