Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ViewCachingAbstractMap (0.16 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. 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)
  3. 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)
Back to Top