(K key, int index, int hash)
| 596 | } |
| 597 | |
| 598 | Entry<K,V> createHashedEntry(K key, int index, int hash) { |
| 599 | Entry<K,V> entry = new Entry<K,V>(key,hash); |
| 600 | entry.next = elementData[index]; |
| 601 | elementData[index] = entry; |
| 602 | return entry; |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * Copies all the mappings in the specified map to this map. These mappings |