------------------------------------------------------------------------------
| 190 | |
| 191 | //------------------------------------------------------------------------------ |
| 192 | const 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 | //------------------------------------------------------------------------------ |
| 205 | int vtkDataArraySelection::GetArrayIndex(const char* name) const |
no test coverage detected