------------------------------------------------------------------------------ Description: Is there no cell at iterator position? (exit condition).
| 65 | // Description: |
| 66 | // Is there no cell at iterator position? (exit condition). |
| 67 | vtkTypeBool 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: |
no outgoing calls
no test coverage detected