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

Method valuesEq

lib/java/util/HashMap.java:244–249  ·  view source on GitHub ↗
(Entry entry, Map.Entry<?, ?> oEntry)

Source from the content-addressed store, hash-verified

242 }
243
244 private static boolean valuesEq(Entry entry, Map.Entry<?, ?> oEntry) {
245 return (entry != null) &&
246 ((entry.value == null) ?
247 (oEntry.getValue() == null) :
248 (areEqualValues(entry.value, oEntry.getValue())));
249 }
250
251 @Override
252 public Iterator<Map.Entry<KT, VT>> iterator() {

Callers 2

removeMethod · 0.95
containsMethod · 0.95

Calls 2

areEqualValuesMethod · 0.80
getValueMethod · 0.65

Tested by

no test coverage detected