Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tailMap (0.18 sec)

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

            .inOrder();
        assertEquals(map.headMap("three", true), map.descendingMap().tailMap("three", true));
        assertThat(map.tailMap("three", false).entrySet()).contains(mapEntry("two", 3));
        assertThat(map.tailMap("three", true).lowerEntry("three")).isNull();
        assertThat(map.headMap("two", false).values()).containsExactly(3, 5).inOrder();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 62.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        }
    
        @Override
        public NavigableMap<K, Collection<V>> tailMap(@ParametricNullness K fromKey) {
          return tailMap(fromKey, true);
        }
    
        @Override
        public NavigableMap<K, Collection<V>> tailMap(
            @ParametricNullness K fromKey, boolean inclusive) {
          return new NavigableAsMap(sortedMap().tailMap(fromKey, inclusive));
        }
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 48.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

            .inOrder();
        assertEquals(map.headMap("three", true), map.descendingMap().tailMap("three", true));
        assertThat(map.tailMap("three", false).entrySet()).contains(mapEntry("two", 3));
        assertThat(map.tailMap("three", true).lowerEntry("three")).isNull();
        assertThat(map.headMap("two", false).values()).containsExactly(3, 5).inOrder();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 65K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public NavigableMap<K, V2> tailMap(@ParametricNullness K fromKey) {
          return tailMap(fromKey, true);
        }
    
        @Override
        public NavigableMap<K, V2> tailMap(@ParametricNullness K fromKey, boolean inclusive) {
          return transformEntries(fromMap().tailMap(fromKey, inclusive), transformer);
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

          return standardHeadMap(toKey);
        }
    
        @Override
        public K lastKey() {
          return standardLastKey();
        }
    
        @Override
        public SortedMap<K, V> tailMap(K fromKey) {
          return standardTailMap(fromKey);
        }
      }
    
      static class StandardLastEntryForwardingNavigableMap<K, V> extends ForwardingNavigableMap<K, V> {
        private final NavigableMap<K, V> backingMap;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 03:23:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    gradlew.bat                             @gradle/bt-developer-productivity
    gradle.properties                       @gradle/bt-developer-productivity
    gradle/detekt.yml                       @gradle/bt-developer-productivity
    .mailmap
    images/
    .github/ISSUE_TEMPLATE                  @gradle/bt-product-operations
    LICENSE                                 @gradle/bt-product-operations
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 07 21:47:29 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top