Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ValueDifference (1.05 sec)

  1. android/guava/src/com/google/common/collect/MapDifference.java

       * intersection of the two maps.
       */
      Map<K, V> entriesInCommon();
    
      /**
       * Returns an unmodifiable map describing keys that appear in both maps, but with different
       * values.
       */
      Map<K, ValueDifference<V>> entriesDiffering();
    
      /**
       * Compares the specified object with this instance for equality. Returns {@code true} if the
       * given object is also a {@code MapDifference} and the values returned by the {@link
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapDifference.java

       * intersection of the two maps.
       */
      Map<K, V> entriesInCommon();
    
      /**
       * Returns an unmodifiable map describing keys that appear in both maps, but with different
       * values.
       */
      Map<K, ValueDifference<V>> entriesDiffering();
    
      /**
       * Compares the specified object with this instance for equality. Returns {@code true} if the
       * given object is also a {@code MapDifference} and the values returned by the {@link
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

        @ParametricNullness
        public V rightValue() {
          return right;
        }
    
        @Override
        public boolean equals(@Nullable Object object) {
          if (object instanceof ValueDifference) {
            ValueDifference<?> that = (ValueDifference<?>) object;
            return Objects.equals(this.left, that.leftValue())
                && Objects.equals(this.right, that.rightValue());
          }
          return false;
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

        @ParametricNullness
        public V rightValue() {
          return right;
        }
    
        @Override
        public boolean equals(@Nullable Object object) {
          if (object instanceof ValueDifference) {
            ValueDifference<?> that = (ValueDifference<?>) object;
            return Objects.equals(this.left, that.leftValue())
                && Objects.equals(this.right, that.rightValue());
          }
          return false;
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (0)
Back to top