Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testMutableValues (0.17 sec)

  1. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

        }
    
        @Override
        public int hashCode() {
          return value;
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 5;
      }
    
      public void testMutableValues() {
        IntHolder holderA = new IntHolder(1);
        IntHolder holderB = new IntHolder(2);
        Map<String, IntHolder> map = ImmutableSortedMap.of("a", holderA, "b", holderB);
        holderA.value = 3;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

        }
    
        @Override
        public int hashCode() {
          return value;
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 5;
      }
    
      public void testMutableValues() {
        IntHolder holderA = new IntHolder(1);
        IntHolder holderB = new IntHolder(2);
        Map<String, IntHolder> map = ImmutableMap.of("a", holderA, "b", holderB);
        holderA.value = 3;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top