Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testTransformListValues (0.37 sec)

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

        entry.setValue("bbb");
        assertThat(transformed.entries()).containsExactly(immutableEntry("a", 3));
      }
    
      @GwtIncompatible(value = "untested")
      public void testTransformListValues() {
        ListMultimap<String, Integer> multimap =
            ImmutableListMultimap.of("a", 2, "b", -3, "b", 3, "a", 4, "c", 6);
        Function<Integer, Integer> square =
            new Function<Integer, Integer>() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top