MCPcopy Create free account
hub / github.com/davidgiven/luje / createHashedEntry

Method createHashedEntry

lib/java/util/HashMap.java:598–603  ·  view source on GitHub ↗
(K key, int index, int hash)

Source from the content-addressed store, hash-verified

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

Callers 1

putImplMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected