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

Function UArray_lastLong

libs/basekit/source/UArray.c:600–606  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

598long UArray_firstLong(const UArray *self) { return UArray_rawLongAt_(self, 0); }
599
600long UArray_lastLong(const UArray *self) {
601 if (!self->size) {
602 return 0;
603 }
604
605 return UArray_rawLongAt_(self, self->size - 1);
606}
607
608// remove
609

Callers 1

UArray_appendPath_Function · 0.85

Calls 1

UArray_rawLongAt_Function · 0.85

Tested by

no test coverage detected