------------------------------------------------------------------------------ Description: Move iterator to first position if any (loop initialization).
| 54 | // Description: |
| 55 | // Move iterator to first position if any (loop initialization). |
| 56 | void vtkBridgeCellIterator::Begin() |
| 57 | { |
| 58 | if (this->CurrentIterator != nullptr) |
| 59 | { |
| 60 | this->CurrentIterator->Begin(); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | //------------------------------------------------------------------------------ |
| 65 | // Description: |
no outgoing calls
no test coverage detected