MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / createHashedEntry

Method createHashedEntry

vm/JavaAPI/src/java/util/HashMap.java:565–570  ·  view source on GitHub ↗
(K key, int index, int hash)

Source from the content-addressed store, hash-verified

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

Callers 1

putImplMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected