@param i element index @return element being returned; throws if OOB @exception AIOOBE if !(0 <= i < _len)
( int i )
| 25 | * @exception AIOOBE if !(0 <= i < _len) |
| 26 | */ |
| 27 | public E get( int i ) { return at(i); } |
| 28 | public E at( int i ) { |
| 29 | range_check(i); |
| 30 | return _es[i]; |
no test coverage detected