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

Method computeHashCode

Ports/CLDC11/src/java/util/HashMap.java:769–771  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

767 * Contract-related functionality
768 */
769 static int computeHashCode(Object key) {
770 return key.hashCode();
771}
772
773 static boolean areEqualKeys(Object key1, Object key2) {
774 return (key1 == key2) || key1.equals(key2);

Callers 4

getEntryMethod · 0.95
putImplMethod · 0.95
removeEntryMethod · 0.95
EntryMethod · 0.45

Calls 1

hashCodeMethod · 0.65

Tested by

no test coverage detected