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

Method createHashedEntry

Ports/CLDC11/src/java/util/HashMap.java:578–583  ·  view source on GitHub ↗
(K key, int index, int hash)

Source from the content-addressed store, hash-verified

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

Callers 1

putImplMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected