| 783 | } |
| 784 | |
| 785 | void UArray_appendPointer_(UArray *self, void *v) { |
| 786 | UArray_at_putPointer_(self, self->size, v); |
| 787 | } |
| 788 | |
| 789 | void UArray_appendBytes_size_(UArray *self, const uint8_t *bytes, size_t size) { |
| 790 | UArray a = UArray_stackAllocedWithData_type_size_((uint8_t *)bytes, |
no test coverage detected