(K key, int index, int hash)
| 563 | } |
| 564 | |
| 565 | Entry<K,V> createHashedEntry(K key, int index, int hash) { |
| 566 | Entry<K,V> entry = new Entry<K,V>(key,hash); |
| 567 | entry.next = elementData[index]; |
| 568 | elementData[index] = entry; |
| 569 | return entry; |
| 570 | } |
| 571 | |
| 572 | /** |
| 573 | * Copies all the mappings in the specified map to this map. These mappings |