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

Function UArray_byteAt_

libs/basekit/source/UArray_math.c:241–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241uint8_t UArray_byteAt_(UArray *self, size_t i) {
242 if (i < UArray_sizeInBytes(self))
243 return self->data[i];
244 return 0;
245}
246
247void UArray_setBit_at_(UArray *self, int aBool, size_t i) {
248 size_t bytePos = i / 8;

Callers

nothing calls this directly

Calls 1

UArray_sizeInBytesFunction · 0.85

Tested by

no test coverage detected