---------------------------------------------------------------------------
| 343 | |
| 344 | //--------------------------------------------------------------------------- |
| 345 | int vtkSMArrayListDomain::IsArrayPartial(unsigned int idx) |
| 346 | { |
| 347 | if (static_cast<size_t>(idx) < this->ALDInternals->DomainValues.size()) |
| 348 | { |
| 349 | return this->ALDInternals->DomainValues[idx].IsPartial ? 1 : 0; |
| 350 | } |
| 351 | |
| 352 | vtkErrorMacro("Index out of range: " << idx); |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | //--------------------------------------------------------------------------- |
| 357 | int vtkSMArrayListDomain::GetDomainAssociation(unsigned int idx) |
no test coverage detected