Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ceilingEntry (0.04 sec)

  1. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

      }
    
      @Override
      public @Nullable Entry<K, V> ceilingEntry(@ParametricNullness K key) {
        return delegate().ceilingEntry(key);
      }
    
      /**
       * A sensible definition of {@link #ceilingEntry} in terms of the {@code firstEntry()} of {@link
       * #tailMap(Object, boolean)}. If you override {@code tailMap}, you may wish to override {@code
       * ceilingEntry} to forward to this implementation.
       */
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableMap.java

      }
    
      @Override
      public @Nullable Entry<K, V> ceilingEntry(@ParametricNullness K key) {
        return delegate().ceilingEntry(key);
      }
    
      /**
       * A sensible definition of {@link #ceilingEntry} in terms of the {@code firstEntry()} of {@link
       * #tailMap(Object, boolean)}. If you override {@code tailMap}, you may wish to override {@code
       * ceilingEntry} to forward to this implementation.
       */
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

        for (K key : keysToTest) {
          assertEquals(expected.lowerEntry(key), navigableMap.lowerEntry(key));
          assertEquals(expected.floorEntry(key), navigableMap.floorEntry(key));
          assertEquals(expected.ceilingEntry(key), navigableMap.ceilingEntry(key));
          assertEquals(expected.higherEntry(key), navigableMap.higherEntry(key));
          for (boolean inclusive : new boolean[] {false, true}) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 16:03:47 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return sortedMap().floorKey(key);
        }
    
        @Override
        public @Nullable Entry<K, Collection<V>> ceilingEntry(@ParametricNullness K key) {
          Entry<K, Collection<V>> entry = sortedMap().ceilingEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        public @Nullable K ceilingKey(@ParametricNullness K key) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 48.4K bytes
    - Viewed (0)
Back to top