Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transformValue (0.65 sec)

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

          NavigableMap<K, V2> transformValues(
              NavigableMap<K, V1> fromMap, Function<? super V1, V2> function) {
        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a map whose values are derived from the original map's entries. In contrast
       * to {@link #transformValues}, this method's entry-transformation logic may depend on the key as
    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

          NavigableMap<K, V2> transformValues(
              NavigableMap<K, V1> fromMap, Function<? super V1, V2> function) {
        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a map whose values are derived from the original map's entries. In contrast
       * to {@link #transformValues}, this method's entry-transformation logic may depend on the key as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top