------------------------------------------------------------------------------
| 500 | |
| 501 | //------------------------------------------------------------------------------ |
| 502 | void vtkStringArray::InsertValue(vtkIdType id, ValueType f) |
| 503 | { |
| 504 | if (id >= this->Size) |
| 505 | { |
| 506 | if (!this->ResizeAndExtend(id + 1)) |
| 507 | { |
| 508 | return; |
| 509 | } |
| 510 | } |
| 511 | this->Array[id] = f; |
| 512 | this->MaxId = std::max(id, this->MaxId); |
| 513 | this->DataElementChanged(id); |
| 514 | } |
| 515 | |
| 516 | //------------------------------------------------------------------------------ |
| 517 | vtkIdType vtkStringArray::InsertNextValue(ValueType f) |
no test coverage detected