Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for compareOrThrow (0.2 sec)

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

        }
    
        @Override
        ImmutableSortedSet<C> subSetImpl(
            C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
          if (!fromInclusive && !toInclusive && Range.compareOrThrow(fromElement, toElement) == 0) {
            return ImmutableSortedSet.of();
          }
          return subSet(
              Range.range(
                  fromElement, BoundType.forBoolean(fromInclusive),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top