Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StandardDescendingMap (0.46 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

                    MapFeature.GENERAL_PURPOSE)
                /*
                 * StandardDescendingMap uses lowerEntry(), and TreeMap.lowerEntry() deliberately
                 * produces immutable entries.
                 *
                 * TODO(cpovirk): Consider making StandardDescendingMap return a ForwardingEntry that
                 * supports setValue().
                 */
                .suppressing(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

                    MapFeature.GENERAL_PURPOSE)
                /*
                 * StandardDescendingMap uses lowerEntry(), and TreeMap.lowerEntry() deliberately
                 * produces immutable entries.
                 *
                 * TODO(cpovirk): Consider making StandardDescendingMap return a ForwardingEntry that
                 * supports setValue().
                 */
                .suppressing(
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * override the {@code entryIterator()} method of this class.
       *
       * @since 12.0
       */
      protected class StandardDescendingMap extends Maps.DescendingMap<K, V> {
        /** Constructor for use by subclasses. */
        public StandardDescendingMap() {}
    
        @Override
        NavigableMap<K, V> forward() {
          return ForwardingNavigableMap.this;
        }
    
        @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Jun 15 18:11:44 GMT 2023
    - 14.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * override the {@code entryIterator()} method of this class.
       *
       * @since 12.0
       */
      protected class StandardDescendingMap extends Maps.DescendingMap<K, V> {
        /** Constructor for use by subclasses. */
        public StandardDescendingMap() {}
    
        @Override
        NavigableMap<K, V> forward() {
          return ForwardingNavigableMap.this;
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jun 15 18:11:44 GMT 2023
    - 14.3K bytes
    - Viewed (0)
Back to top