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

Function StorageTypeToString

Common/DataModel/Testing/Cxx/TestCellArrayHelpers.h:1539–1555  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1537}
1538
1539const char* StorageTypeToString(vtkCellArray::StorageTypes storageType)
1540{
1541 switch (storageType)
1542 {
1543 case vtkCellArray::Int64:
1544 return "Int64";
1545 case vtkCellArray::Int32:
1546 return "Int32";
1547 case vtkCellArray::FixedSizeInt64:
1548 return "FixedSizeInt64";
1549 case vtkCellArray::FixedSizeInt32:
1550 return "FixedSizeInt32";
1551 case vtkCellArray::Generic:
1552 default:
1553 return "Generic";
1554 }
1555}
1556
1557template <vtkCellArray::StorageTypes StorageType, bool FixedSize, typename... ArrayTypes>
1558void RunTests()

Callers 1

RunTestsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected