Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for floorEntry (0.03 sec)

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

        public @Nullable K lowerKey(@ParametricNullness K key) {
          return sortedMap().lowerKey(key);
        }
    
        @Override
        public @Nullable Entry<K, Collection<V>> floorEntry(@ParametricNullness K key) {
          Entry<K, Collection<V>> entry = sortedMap().floorEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        public @Nullable K floorKey(@ParametricNullness K key) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
Back to top