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

Function UArray_longAt_

libs/basekit/source/UArray.c:582–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

580}
581
582long UArray_longAt_(const UArray *self, size_t i) {
583 if (i >= self->size) {
584 return 0;
585 }
586 return UArray_rawLongAt_(self, i);
587}
588
589double UArray_doubleAt_(const UArray *self, size_t i) {
590 if (i >= self->size) {

Callers 7

UArray_unescapeFunction · 0.85
UArray_translateFunction · 0.85
Date_fromSerializationFunction · 0.85
IoSeq_immutable.cFile · 0.85
IoSeq_mutable.cFile · 0.85

Calls 1

UArray_rawLongAt_Function · 0.85

Tested by

no test coverage detected