Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SeaOfNodes/Simple
/ at
Method
at
chapter21/src/main/java/com/seaofnodes/simple/Ary.java:28–31 ·
view source on GitHub ↗
( int i )
Source
from the content-addressed store, hash-verified
26
*/
27
public
E get(
int
i ) {
return
at(i); }
28
public
E at(
int
i ) {
29
range_check(i);
30
return
_es[i];
31
}
32
public
E atX(
int
i ) {
33
if
( i >= _len )
return
null;
34
return
_es[i];
Callers
3
get
Method · 0.95
last
Method · 0.95
basicBlockLayout
Method · 0.95
Calls
1
range_check
Method · 0.95
Tested by
no test coverage detected