Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSubSet (0.37 sec)

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

        if (from == to) {
          return emptyMultiset(comparator());
        } else if (from == 0 && to == length) {
          return this;
        } else {
          RegularImmutableSortedSet<E> subElementSet = elementSet.getSubSet(from, to);
          return new RegularImmutableSortedMultiset<>(
              subElementSet, cumulativeCounts, offset + from, to - from);
        }
      }
    
      @Override
      boolean isPartialView() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top