| 731 | |
| 732 | VTK_ITER_INLINE |
| 733 | ValueIterator operator++(int) noexcept // postfix |
| 734 | { |
| 735 | auto ret = this->Ref.Id++; |
| 736 | this->DebugIdAsserts(); |
| 737 | return ValueIterator{ this->Ref.Array, ret }; |
| 738 | } |
| 739 | |
| 740 | VTK_ITER_INLINE |
| 741 | ValueIterator& operator--() noexcept // prefix |
nothing calls this directly
no test coverage detected