( int i )
| 174 | } |
| 175 | |
| 176 | private void range_check( int i ) { |
| 177 | if( i < 0 || i>=_len ) |
| 178 | throw new ArrayIndexOutOfBoundsException(""+i+" >= "+_len); |
| 179 | } |
| 180 | |
| 181 | // Note that the hashCode() and equals() are not invariant to changes in the |
| 182 | // underlying array. If the hashCode() is used (e.g., inserting into a |