MCPcopy Create free account
hub / github.com/antlr/codebuff / MapDifferenceImpl

Method MapDifferenceImpl

output/java_guava/1.4.17/Maps.java:537–546  ·  view source on GitHub ↗
(
                     Map<K, V> onlyOnLeft,
                     Map<K, V> onlyOnRight,
                     Map<K, V> onBoth,
                     Map<K, ValueDifference<V>> differences)

Source from the content-addressed store, hash-verified

535 final Map<K, ValueDifference<V>> differences;
536
537 MapDifferenceImpl(
538 Map<K, V> onlyOnLeft,
539 Map<K, V> onlyOnRight,
540 Map<K, V> onBoth,
541 Map<K, ValueDifference<V>> differences) {
542 this.onlyOnLeft = unmodifiableMap(onlyOnLeft);
543 this.onlyOnRight = unmodifiableMap(onlyOnRight);
544 this.onBoth = unmodifiableMap(onBoth);
545 this.differences = unmodifiableMap(differences);
546 }
547
548 @Override
549 public boolean areEqual() {

Callers

nothing calls this directly

Calls 1

unmodifiableMapMethod · 0.45

Tested by

no test coverage detected