| 1567 | |
| 1568 | template <typename ArrayT> |
| 1569 | typename vtkCellArray::VisitState<ArrayT>::CellRangeType |
| 1570 | vtkCellArray::VisitState<ArrayT>::GetCellRange(vtkIdType cellId) |
| 1571 | { |
| 1572 | return vtk::DataArrayValueRange<1>( |
| 1573 | this->GetConnectivity(), this->GetBeginOffset(cellId), this->GetEndOffset(cellId)); |
| 1574 | } |
| 1575 | VTK_ABI_NAMESPACE_END |
| 1576 | |
| 1577 | namespace vtkCellArray_detail |
nothing calls this directly
no test coverage detected