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

Method IsAtEnd

Testing/GenericBridge/vtkBridgeCellIterator.cxx:67–76  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Is there no cell at iterator position? (exit condition).

Source from the content-addressed store, hash-verified

65// Description:
66// Is there no cell at iterator position? (exit condition).
67vtkTypeBool vtkBridgeCellIterator::IsAtEnd()
68{
69 int result = 1;
70
71 if (this->CurrentIterator != nullptr)
72 {
73 result = this->CurrentIterator->IsAtEnd();
74 }
75 return result;
76}
77
78//------------------------------------------------------------------------------
79// Description:

Callers 2

GetTupleMethod · 0.45
GetComponentMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected