Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testTreeKeys (0.07 sec)

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

                .hashSetValues()
                .<String, Integer>build();
      }
    
      @J2ktIncompatible
      @GwtIncompatible // doesn't build without explicit type parameters on build() methods
      public void testTreeKeys() {
        ListMultimap<String, Integer> multimap = MultimapBuilder.treeKeys().arrayListValues().build();
        assertTrue(multimap.keySet() instanceof SortedSet);
        assertTrue(multimap.asMap() instanceof SortedMap);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top