Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for entriesInCommon (0.3 sec)

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

       * #entriesDiffering()} of the two instances are equal.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    
      /**
       * Returns the hash code for this instance. This is defined as the hash code of
       *
       * <pre>{@code
       * Arrays.asList(entriesOnlyOnLeft(), entriesOnlyOnRight(),
       *     entriesInCommon(), entriesDiffering())
       * }</pre>
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 04 13:28:27 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/SortedMapDifference.java

        extends MapDifference<K, V> {
    
      @Override
      SortedMap<K, V> entriesOnlyOnLeft();
    
      @Override
      SortedMap<K, V> entriesOnlyOnRight();
    
      @Override
      SortedMap<K, V> entriesInCommon();
    
      @Override
      SortedMap<K, ValueDifference<V>> entriesDiffering();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 04 13:28:27 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        assertThat(diff1.entriesInCommon().entrySet()).contains(Maps.immutableEntry(1, "a"));
        assertThat(diff1.entriesDiffering().entrySet())
            .containsExactly(
                Maps.immutableEntry(3, ValueDifferenceImpl.create("c", "f")),
                Maps.immutableEntry(5, ValueDifferenceImpl.create("e", "g")))
            .inOrder();
        try {
          diff1.entriesInCommon().put(7, "x");
          fail();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 67.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MapsTest.java

        assertThat(diff1.entriesInCommon().entrySet()).contains(Maps.immutableEntry(1, "a"));
        assertThat(diff1.entriesDiffering().entrySet())
            .containsExactly(
                Maps.immutableEntry(3, ValueDifferenceImpl.create("c", "f")),
                Maps.immutableEntry(5, ValueDifferenceImpl.create("e", "g")))
            .inOrder();
        try {
          diff1.entriesInCommon().put(7, "x");
          fail();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 64.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

                && entriesInCommon().equals(other.entriesInCommon())
                && entriesDiffering().equals(other.entriesDiffering());
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Objects.hashCode(
              entriesOnlyOnLeft(), entriesOnlyOnRight(), entriesInCommon(), entriesDiffering());
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
Back to top