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

Method computeHashCode

lib/java/util/HashMap.java:812–814  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

810 * Contract-related functionality
811 */
812 static int computeHashCode(Object key) {
813 return key.hashCode();
814}
815
816 static boolean areEqualKeys(Object key1, Object key2) {
817 return (key1 == key2) || key1.equals(key2);

Callers 4

getEntryMethod · 0.95
putImplMethod · 0.95
removeEntryMethod · 0.95
EntryMethod · 0.80

Calls 1

hashCodeMethod · 0.65

Tested by

no test coverage detected