| 479 | } |
| 480 | |
| 481 | void UArray_copyData_(UArray *self, const UArray *other) { |
| 482 | UArray_setSize_(self, UArray_sizeRequiredToContain_(self, other)); |
| 483 | memmove(self->data, other->data, UArray_sizeInBytes(other)); |
| 484 | } |
| 485 | |
| 486 | void UArray_convertToItemType_(UArray *self, CTYPE newItemType) { |
| 487 | if (self->itemType != newItemType) { |
no test coverage detected