| 155 | } |
| 156 | |
| 157 | VTK_ITER_INLINE |
| 158 | IdStorage operator--(int) noexcept // postfix |
| 159 | { |
| 160 | auto v = this->ValueId--; |
| 161 | auto t = this->TupleId; |
| 162 | auto c = this->ComponentId--; |
| 163 | if (this->ComponentId < 0) |
| 164 | { |
| 165 | this->ComponentId = this->GetTupleSize() - 1; |
| 166 | --this->TupleId; |
| 167 | } |
| 168 | return IdStorage{ v, t, c, this->NumComps }; |
| 169 | } |
| 170 | |
| 171 | VTK_ITER_INLINE |
| 172 | ValueIdType Convert(TupleIdType tuple, ComponentIdType comp) const noexcept |
nothing calls this directly
no test coverage detected