(Cell<K, V> cell)
| 103 | } |
| 104 | |
| 105 | private void insert(Cell<K, V> cell) { |
| 106 | ++ size; |
| 107 | |
| 108 | grow(); |
| 109 | |
| 110 | int index = cell.hashCode() & (array.length - 1); |
| 111 | cell.setNext(array[index]); |
| 112 | array[index] = cell; |
| 113 | } |
| 114 | |
| 115 | public void remove(Cell<K, V> cell) { |
| 116 | int index = cell.hashCode() & (array.length - 1); |