( int i )
| 201 | } |
| 202 | |
| 203 | private void range_check( int i ) { |
| 204 | if( i < 0 || i>=_len ) |
| 205 | throw new ArrayIndexOutOfBoundsException(""+i+" >= "+_len); |
| 206 | } |
| 207 | |
| 208 | // Note that the hashCode() and equals() are not invariant to changes in the |
| 209 | // underlying array. If the hashCode() is used (e.g., inserting into a |