Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testBuilderExactlySizedReusesArray (0.11 seconds)

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

                .put("five", 5)
                .buildOrThrow();
        assertMapEquals(map, "one", 1, "two", 2, "three", 3, "four", 4, "five", 5);
      }
    
      @GwtIncompatible
      public void testBuilderExactlySizedReusesArray() {
        ImmutableMap.Builder<Integer, Integer> builder = ImmutableMap.builderWithExpectedSize(10);
        Object[] builderArray = builder.alternatingKeysAndValues;
        for (int i = 0; i < 10; i++) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 36.7K bytes
    - Click Count (0)
Back to Top