Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for V2 (0.19 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

       * @since 7.0
       */
      public static <
              K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Multimap<K, V2> transformValues(
              Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) {
        checkNotNull(function);
        EntryTransformer<K, V1, V2> transformer = Maps.asEntryTransformer(function);
        return transformEntries(fromMultimap, transformer);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
Back to top