Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getUpperEndpoint (0.19 sec)

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

        boolean hasUpBound = this.hasUpperBound;
        T upEnd = getUpperEndpoint();
        BoundType upType = getUpperBoundType();
        if (!hasUpperBound()) {
          hasUpBound = other.hasUpperBound;
          upEnd = other.getUpperEndpoint();
          upType = other.getUpperBoundType();
        } else if (other.hasUpperBound()) {
          int cmp = comparator.compare(getUpperEndpoint(), other.getUpperEndpoint());
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/GeneralRange.java

        boolean hasUpBound = this.hasUpperBound;
        T upEnd = getUpperEndpoint();
        BoundType upType = getUpperBoundType();
        if (!hasUpperBound()) {
          hasUpBound = other.hasUpperBound;
          upEnd = other.getUpperEndpoint();
          upType = other.getUpperBoundType();
        } else if (other.hasUpperBound()) {
          int cmp = comparator.compare(getUpperEndpoint(), other.getUpperEndpoint());
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  3. 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:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 34.2K bytes
    - Viewed (0)
Back to top