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

Method RemoveArrayByName

Common/Core/vtkDataArraySelection.cxx:283–291  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

281
282//------------------------------------------------------------------------------
283void 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//------------------------------------------------------------------------------
294void vtkDataArraySelection::SetArrays(const char* const* names, int numArrays)

Callers 4

UpdateMetadataMethod · 0.80
ReadMetaDataMethod · 0.80
ReadMetaDataMethod · 0.80
RequestDataObjectMethod · 0.80

Calls 4

FindMethod · 0.45
endMethod · 0.45
eraseMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected