| 61 | } |
| 62 | |
| 63 | void UArray_clear(UArray *self) { |
| 64 | UARRAY_FOREACHASSIGN_VALUE_UNUSED(self, i, 0); |
| 65 | } |
| 66 | |
| 67 | void UArray_setItemsToLong_(UArray *self, long x) { |
| 68 | UARRAY_FOREACHASSIGN_VALUE_UNUSED(self, i, x); |
no outgoing calls
no test coverage detected