Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for tailMap (0.04 seconds)

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

       */
      @Override
      public ImmutableSortedMap<K, V> tailMap(K fromKey) {
        return tailMap(fromKey, true);
      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are
       * greater than (or equal to, if {@code inclusive}) {@code fromKey}.
       *
       * <p>The {@link SortedMap#tailMap} documentation states that a submap of a submap throws an
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 52.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
          synchronized (mutex) {
            return navigableMap(delegate().tailMap(fromKey, inclusive), mutex);
          }
        }
    
        @Override
        public SortedMap<K, V> tailMap(K fromKey) {
          return tailMap(fromKey, true);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 53K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
          synchronized (mutex) {
            return navigableMap(delegate().tailMap(fromKey, inclusive), mutex);
          }
        }
    
        @Override
        public SortedMap<K, V> tailMap(K fromKey) {
          return tailMap(fromKey, true);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 56.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      @Override
      public ImmutableSortedMap<K, V> tailMap(K fromKey) {
        return tailMap(fromKey, true);
      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are
       * greater than (or equal to, if {@code inclusive}) {@code fromKey}.
       *
       * <p>The {@link SortedMap#tailMap} documentation states that a submap of a submap throws an
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 54.7K bytes
    - Click Count (0)
  5. 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();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 63.2K bytes
    - Click Count (0)
Back to Top