| 183 | } |
| 184 | |
| 185 | vtkTypeBool HasCurrentMetaData() |
| 186 | { |
| 187 | if (this->PassSelf || !this->ChildIterator) |
| 188 | { |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | if (this->ChildIterator->PassSelf) |
| 193 | { |
| 194 | return this->Reverse ? (this->ReverseIter->MetaData != nullptr) |
| 195 | : (this->Iter->MetaData != nullptr); |
| 196 | } |
| 197 | |
| 198 | return this->ChildIterator->HasCurrentMetaData(); |
| 199 | } |
| 200 | |
| 201 | // Go to the next element. |
| 202 | void Next() |
nothing calls this directly
no test coverage detected