------------------------------------------------------------------------------
| 125 | |
| 126 | //------------------------------------------------------------------------------ |
| 127 | int vtkDataArraySelection::ArrayExists(const char* name) const |
| 128 | { |
| 129 | // Check if there is a specific entry for this array. |
| 130 | return this->Internal->Find(name) != this->Internal->Arrays.end() ? 1 : 0; |
| 131 | } |
| 132 | |
| 133 | //------------------------------------------------------------------------------ |
| 134 | void vtkDataArraySelection::EnableAllArrays() |
no test coverage detected