Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for ViewCachingAbstractMap (0.51 seconds)

  1. guava/src/com/google/common/collect/StandardTable.java

    import com.google.common.base.Predicate;
    import com.google.common.base.Supplier;
    import com.google.common.collect.Maps.IteratorBasedAbstractMap;
    import com.google.common.collect.Maps.ViewCachingAbstractMap;
    import com.google.common.collect.Sets.ImprovedAbstractSet;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import com.google.errorprone.annotations.concurrent.LazyInit;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.collect.Maps.ViewCachingAbstractMap;
    import com.google.j2objc.annotations.WeakOuter;
    import java.io.Serializable;
    import java.util.AbstractCollection;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Comparator;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        return new NavigableAsMapView<>(set, function);
      }
    
      private static class AsMapView<K extends @Nullable Object, V extends @Nullable Object>
          extends ViewCachingAbstractMap<K, V> {
    
        private final Set<K> set;
        final Function<? super K, V> function;
    
        Set<K> backingSet() {
          return set;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Maps.java

        return new NavigableAsMapView<>(set, function);
      }
    
      private static class AsMapView<K extends @Nullable Object, V extends @Nullable Object>
          extends ViewCachingAbstractMap<K, V> {
    
        private final Set<K> set;
        final Function<? super K, V> function;
    
        Set<K> backingSet() {
          return set;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

          multimap().clear();
        }
      }
    
      /** A skeleton implementation of {@link Multimap#asMap()}. */
      static final class AsMap<K extends @Nullable Object, V extends @Nullable Object>
          extends Maps.ViewCachingAbstractMap<K, Collection<V>> {
        @Weak private final Multimap<K, V> multimap;
    
        AsMap(Multimap<K, V> multimap) {
          this.multimap = checkNotNull(multimap);
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/Multimaps.java

          multimap().clear();
        }
      }
    
      /** A skeleton implementation of {@link Multimap#asMap()}. */
      static final class AsMap<K extends @Nullable Object, V extends @Nullable Object>
          extends Maps.ViewCachingAbstractMap<K, Collection<V>> {
        @Weak private final Multimap<K, V> multimap;
    
        AsMap(Multimap<K, V> multimap) {
          this.multimap = checkNotNull(multimap);
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86.3K bytes
    - Click Count (0)
Back to Top