| 337 | |
| 338 | VTK_ITER_INLINE |
| 339 | ValueReference operator=(const ValueReference& o) noexcept |
| 340 | { |
| 341 | if (this->Array) |
| 342 | { // Already initialized. Assign the value, not the reference: |
| 343 | return *this = static_cast<APIType>(o); |
| 344 | } |
| 345 | else |
| 346 | { // Initialize the reference: |
| 347 | this->Array = o.Array; |
| 348 | this->Id = o.Id; |
| 349 | return *this; |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | VTK_ITER_INLINE |
| 354 | ValueReference operator=(ValueReference&& o) noexcept |
nothing calls this directly
no test coverage detected