MCPcopy Create free account
hub / github.com/Kitware/VTK / HasCurrentMetaData

Method HasCurrentMetaData

Common/DataModel/vtkDataObjectTreeIterator.cxx:185–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 1

HasCurrentMetaDataMethod · 0.45

Tested by

no test coverage detected