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

Method GetArrayName

Common/Core/vtkDataArraySelection.cxx:192–202  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

190
191//------------------------------------------------------------------------------
192const char* vtkDataArraySelection::GetArrayName(int index) const
193{
194 try
195 {
196 return this->Internal->Arrays.at(index).first.c_str();
197 }
198 catch (std::out_of_range&)
199 {
200 return nullptr;
201 }
202}
203
204//------------------------------------------------------------------------------
205int vtkDataArraySelection::GetArrayIndex(const char* name) const

Callers 9

PrintSelfMethod · 0.95
CopySelectionsMethod · 0.95
ComputeRequiredArraysMethod · 0.45
BuildPrototypeMethod · 0.45
GetAbstractArrayMethod · 0.45
PassDataMethod · 0.45
PrintSelfMethod · 0.45
RemoveColumnMethod · 0.45
GetColumnNameMethod · 0.45

Calls 2

c_strMethod · 0.45
atMethod · 0.45

Tested by

no test coverage detected