Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for lowerEntry (0.07 sec)

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

          return (NavigableMap<K, Collection<V>>) super.sortedMap();
        }
    
        @Override
        public @Nullable Entry<K, Collection<V>> lowerEntry(@ParametricNullness K key) {
          Entry<K, Collection<V>> entry = sortedMap().lowerEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        public @Nullable K lowerKey(@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