Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for transformValues (0.17 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. guava-tests/test/com/google/common/collect/MapsTest.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Maps.transformEntries;
    import static com.google.common.collect.Maps.transformValues;
    import static com.google.common.collect.Maps.unmodifiableNavigableMap;
    import static com.google.common.collect.testing.Helpers.mapEntry;
    import static com.google.common.truth.Truth.assertThat;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 67.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/MapsTest.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Maps.transformEntries;
    import static com.google.common.collect.Maps.transformValues;
    import static com.google.common.collect.Maps.unmodifiableNavigableMap;
    import static com.google.common.collect.testing.Helpers.mapEntry;
    import static com.google.common.truth.Truth.assertThat;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 64.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Synchronized.java

            return collection(delegate().values(), mutex);
          }
        }
    
        @Override
        public Map<R, Map<C, V>> rowMap() {
          synchronized (mutex) {
            return map(
                Maps.transformValues(
                    delegate().rowMap(),
                    new com.google.common.base.Function<Map<C, V>, Map<C, V>>() {
                      @Override
                      public Map<C, V> apply(Map<C, V> t) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
Back to top