Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getUpperEndpoint (0.06 seconds)

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

        if (node == null) {
          return 0;
        }
        // The cast is safe because we call this method only if hasUpperBound().
        int cmp =
            comparator()
                .compare(uncheckedCastNullableTToT(range.getUpperEndpoint()), node.getElement());
        if (cmp > 0) {
          return aggregateAboveRange(aggr, node.right);
        } else if (cmp == 0) {
          switch (range.getUpperBoundType()) {
            case OPEN:
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 13:11:08 GMT 2026
    - 34K bytes
    - Click Count (0)
Back to Top