Package com.io7m.jranges
Interface RangeInclusiveBType
- All Known Implementing Classes:
RangeInclusiveB
@Immutable
public interface RangeInclusiveBType
An inclusive range with
BigInteger components.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidCheck preconditions for the type.default booleanincludesValue(BigInteger value) Determine if the given value is included in this range.default BigIntegerinterval()Retrieve the number of values in the range[lower, upper].default booleanisIncludedIn(RangeInclusiveB other) Determine if the given range is included in this range.lower()upper()
-
Method Details
-
lower
- Returns:
- The lower bound of the inclusive range.
-
upper
- Returns:
- The upper bound of the inclusive range.
-
interval
Retrieve the number of values in the range
[lower, upper]. That is,(upper - lower) + 1.- Returns:
- The number of values in the range
-
includesValue
Determine if the given value is included in this range.
- Parameters:
value- The given value- Returns:
trueiffvalue >= this.getLower() && value <= this.getUpper().
-
isIncludedIn
Determine if the given range is included in this range.
- Parameters:
other- The given range- Returns:
trueiffthis.getLower() >= other.getLower() && this.getUpper() <= other.getUpper().
-
checkPreconditions
@Check default void checkPreconditions()Check preconditions for the type.
-