Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transformEntries (0.12 sec)

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

              Multimap<K, V1> fromMultimap, Function<? super V1, V2> function) {
        checkNotNull(function);
        EntryTransformer<K, V1, V2> transformer = (key, value) -> function.apply(value);
        return transformEntries(fromMultimap, transformer);
      }
    
      /**
       * Returns a view of a {@code ListMultimap} where each value is transformed by a function. All
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multimaps.java

              Multimap<K, V1> fromMultimap, Function<? super V1, V2> function) {
        checkNotNull(function);
        EntryTransformer<K, V1, V2> transformer = (key, value) -> function.apply(value);
        return transformEntries(fromMultimap, transformer);
      }
    
      /**
       * Returns a view of a {@code ListMultimap} where each value is transformed by a function. All
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
Back to top