| 747 | |
| 748 | VTK_ITER_INLINE |
| 749 | ValueIterator operator--(int) noexcept // postfix |
| 750 | { |
| 751 | auto ret = this->Ref.Id--; |
| 752 | this->DebugIdAsserts(); |
| 753 | return ValueIterator{ this->Ref.Array, ret }; |
| 754 | } |
| 755 | |
| 756 | VTK_ITER_INLINE |
| 757 | reference operator[](difference_type i) const noexcept |
nothing calls this directly
no test coverage detected