(K key, int index, int hash)
| 576 | } |
| 577 | |
| 578 | Entry<K,V> createHashedEntry(K key, int index, int hash) { |
| 579 | Entry<K,V> entry = new Entry<K,V>(key,hash); |
| 580 | entry.next = elementData[index]; |
| 581 | elementData[index] = entry; |
| 582 | return entry; |
| 583 | } |
| 584 | |
| 585 | /// Copies all the mappings in the specified map to this map. These mappings |
| 586 | /// will replace all mappings that this map had for any of the keys currently |