| 591 | } |
| 592 | |
| 593 | VTK_ITER_INLINE |
| 594 | ConstValueIterator operator--(int) noexcept // postfix |
| 595 | { |
| 596 | auto ret = this->Id--; |
| 597 | this->Id.DebugAsserts(this->Array); |
| 598 | return ConstValueIterator{ this->Array, ret }; |
| 599 | } |
| 600 | |
| 601 | VTK_ITER_INLINE |
| 602 | reference operator[](difference_type i) const noexcept |
nothing calls this directly
no test coverage detected