Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for SortedAsMapView (0.12 seconds)

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

            return immutableEntry(key, function.apply(key));
          }
        };
      }
    
      private static final class SortedAsMapView<K extends @Nullable Object, V extends @Nullable Object>
          extends AsMapView<K, V> implements SortedMap<K, V> {
    
        SortedAsMapView(SortedSet<K> set, Function<? super K, V> function) {
          super(set, function);
        }
    
        @Override
        SortedSet<K> backingSet() {
    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)
  2. guava/src/com/google/common/collect/Maps.java

            return immutableEntry(key, function.apply(key));
          }
        };
      }
    
      private static final class SortedAsMapView<K extends @Nullable Object, V extends @Nullable Object>
          extends AsMapView<K, V> implements SortedMap<K, V> {
    
        SortedAsMapView(SortedSet<K> set, Function<? super K, V> function) {
          super(set, function);
        }
    
        @Override
        SortedSet<K> backingSet() {
    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