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

Method Entry

lib/java/util/HashMap.java:70–73  ·  view source on GitHub ↗
(K theKey, int hash)

Source from the content-addressed store, hash-verified

68 Entry<K, V> next;
69
70 Entry(K theKey, int hash) {
71 super(theKey, null);
72 this.origKeyHash = hash;
73 }
74
75 Entry(K theKey, V theValue) {
76 super(theKey, theValue);

Callers

nothing calls this directly

Calls 1

computeHashCodeMethod · 0.80

Tested by

no test coverage detected