Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
Back to top