Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IoLanguage/io
/ UArray_doubleAt_
Function
UArray_doubleAt_
libs/basekit/source/UArray.c:589–594 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
587
}
588
589
double UArray_doubleAt_(const UArray *self, size_t i) {
590
if (i >= self->size) {
591
return 0.0;
592
}
593
return UArray_rawDoubleAt_(self, i);
594
}
595
596
// at, extras
597
Callers
2
IoSeq_immutable.c
File · 0.85
IoSeq_mutable.c
File · 0.85
Calls
1
UArray_rawDoubleAt_
Function · 0.85
Tested by
no test coverage detected