Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unsafeDelegateSortedSet (0.42 sec)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

              : comparator.equals(comparator2);
        }
        return false;
      }
    
      // Assumes that delegate doesn't have null elements and comparator.
      static <E> ImmutableSortedSet<E> unsafeDelegateSortedSet(
          SortedSet<E> delegate, boolean isSubset) {
        return delegate.isEmpty()
            ? emptySet(delegate.comparator())
            : new RegularImmutableSortedSet<E>(delegate, isSubset);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Aug 19 16:21:24 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top