MCPcopy 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

getMethod · 0.95
lastMethod · 0.95
basicBlockLayoutMethod · 0.95

Calls 1

range_checkMethod · 0.95

Tested by

no test coverage detected