Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nob (0.03 sec)

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

        assertThat(transformed.entries())
            .containsExactly(
                immutableEntry("a", "a"), immutableEntry("a", "a"), immutableEntry("b", "nob"))
            .inOrder();
      }
    
      @GwtIncompatible(value = "untested")
      public void testTransformListEntries() {
        ListMultimap<String, Integer> multimap =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

       *     };
       * Multimap<String, String> transformed =
       *     Multimaps.transformEntries(multimap, transformer);
       * System.out.println(transformed);
       * }</pre>
       *
       * ... prints {@code {a=[a, a], b=[nob]}}.
       *
       * <p>Changes in the underlying multimap are reflected in this view. Conversely, this view
       * supports removal operations, and these are reflected in the underlying multimap.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top