Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for emptyMultiset (0.08 sec)

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

      }
    
      ImmutableSortedMultiset<E> getSubMultiset(int from, int to) {
        checkPositionIndexes(from, to, length);
        if (from == to) {
          return emptyMultiset(comparator());
        } else if (from == 0 && to == length) {
          return this;
        } else {
          RegularImmutableSortedSet<E> subElementSet = elementSet.getSubSet(from, to);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top