( int i )
| 190 | } |
| 191 | |
| 192 | private void range_check( int i ) { |
| 193 | if( i < 0 || i>=_len ) |
| 194 | throw new ArrayIndexOutOfBoundsException(""+i+" >= "+_len); |
| 195 | } |
| 196 | |
| 197 | // Note that the hashCode() and equals() are not invariant to changes in the |
| 198 | // underlying array. If the hashCode() is used (e.g., inserting into a |