Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getUpperEndpoint (0.38 sec)

  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:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.8K bytes
    - Viewed (0)
Back to top