MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_pointerAt_

Function UArray_pointerAt_

libs/basekit/source/UArray.c:575–580  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

573// at, with bounds check
574
575void *UArray_pointerAt_(const UArray *self, size_t i) {
576 if (i >= self->size) {
577 return NULL;
578 }
579 return UArray_rawPointerAt_(self, i);
580}
581
582long UArray_longAt_(const UArray *self, size_t i) {
583 if (i >= self->size) {

Callers 1

IoSeq_splitToFunctionFunction · 0.85

Calls 1

UArray_rawPointerAt_Function · 0.85

Tested by

no test coverage detected