------------------------------------------------------------------------------
| 281 | |
| 282 | //------------------------------------------------------------------------------ |
| 283 | void vtkDataArraySelection::RemoveArrayByName(const char* name) |
| 284 | { |
| 285 | auto iter = this->Internal->Find(name); |
| 286 | if (iter != this->Internal->Arrays.end()) |
| 287 | { |
| 288 | this->Internal->Arrays.erase(iter); |
| 289 | this->Modified(); |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | //------------------------------------------------------------------------------ |
| 294 | void vtkDataArraySelection::SetArrays(const char* const* names, int numArrays) |
no test coverage detected