| 550 | // at, without bounds check |
| 551 | |
| 552 | void *UArray_rawPointerAt_(const UArray *self, size_t i) { |
| 553 | if (self->itemType == CTYPE_uintptr_t) { |
| 554 | return ((void **)self->data)[i]; |
| 555 | } |
| 556 | |
| 557 | UArray_error_(self, "UArray_rawPointerAt_ not supported on this type"); |
| 558 | return NULL; |
| 559 | } |
| 560 | |
| 561 | long UArray_rawLongAt_(const UArray *self, size_t i) { |
| 562 | UARRAY_RAWAT_(self, i); |
no test coverage detected