Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transformValues (0.24 sec)

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

          Map<K, Collection<V>> result = map;
          if (result == null) {
            result =
                map =
                    Collections.unmodifiableMap(
                        Maps.transformValues(
                            delegate.asMap(), collection -> unmodifiableValueCollection(collection)));
          }
          return result;
        }
    
        @Override
        public Collection<Entry<K, V>> entries() {
    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)
  2. 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
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top