Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SortedAsMap (1.03 sec)

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

        } else if (map instanceof SortedMap) {
          return new SortedAsMap((SortedMap<K, Collection<V>>) map);
        } else {
          return new AsMap(map);
        }
      }
    
      @WeakOuter
      private class AsMap extends ViewCachingAbstractMap<K, Collection<V>> {
        /**
         * Usually the same as map, but smaller for the headMap(), tailMap(), or subMap() of a
         * SortedAsMap.
         */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
Back to top