Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getSortedSetDelegate (0.13 seconds)

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

        }
    
        @Override
        NavigableSet<V> getSortedSetDelegate() {
          return (NavigableSet<V>) super.getSortedSetDelegate();
        }
    
        @Override
        public @Nullable V lower(@ParametricNullness V v) {
          return getSortedSetDelegate().lower(v);
        }
    
        @Override
        public @Nullable V floor(@ParametricNullness V v) {
          return getSortedSetDelegate().floor(v);
        }
    
        @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
Back to Top