Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for asEntryTransformer (0.15 sec)

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

              K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Map<K, V2> transformValues(Map<K, V1> fromMap, Function<? super V1, V2> function) {
        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a sorted map where each value is transformed by a function. All other
       * properties of the map, such as iteration order, are left intact. For example, the code:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

              K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Map<K, V2> transformValues(Map<K, V1> fromMap, Function<? super V1, V2> function) {
        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a sorted map where each value is transformed by a function. All other
       * properties of the map, such as iteration order, are left intact. For example, the code:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

          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);
      }
    
      /**
       * Returns a view of a {@code ListMultimap} where each value is transformed by a function. All
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multimaps.java

          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);
      }
    
      /**
       * Returns a view of a {@code ListMultimap} where each value is transformed by a function. All
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top