Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for ForwardingNavigableSet (0.25 seconds)

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

        } else {
          return removeAllImpl(set, collection.iterator());
        }
      }
    
      @GwtIncompatible // NavigableSet
      static class DescendingSet<E extends @Nullable Object> extends ForwardingNavigableSet<E> {
        private final NavigableSet<E> forward;
    
        DescendingSet(NavigableSet<E> forward) {
          this.forward = forward;
        }
    
        @Override
        protected NavigableSet<E> delegate() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 81.6K bytes
    - Click Count (0)
Back to Top