True if data array uses 64-bit representation for its storage
| 263 | |
| 264 | // True if data array uses 64-bit representation for its storage |
| 265 | bool Is64BitArray(const vtkDataArray* array) |
| 266 | { |
| 267 | return (array && array->GetElementComponentSize() == 8); |
| 268 | } |
| 269 | |
| 270 | // Given a data array and a flag indicating whether 64 bit labels are used, |
| 271 | // lookup and return a single element in the array. The data array must |
no test coverage detected