public interface Range<T> extends java.util.Collection<T>, HeadTail<T>
A range represent a set of values between to bounds, optionally with a step (or increment) from one value to the next.
Modifier and Type | Method and Description |
---|---|
default java.lang.Object[] |
__$$_destruct(int number,
boolean substruct,
java.lang.Object[] toSkip)
New style destructuring helper.
|
Range<T> |
decrementBy(int value)
Sets the negative increment of the range.
|
boolean |
encloses(T value)
Checks if the range encloses the value.
|
T |
from()
Gets the lower bound of the range.
|
int |
increment()
Gets the increment of the range.
|
Range<T> |
incrementBy(int value)
Sets the increment of the range.
|
Range<T> |
newStartingFrom(T newStart)
Returns a copy of this range with a new starting value.
|
Range<T> |
reversed()
Creates a new reversed range from this range.
|
T |
to()
Gets the upper bound of the range.
|
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray
head, isEmpty, tail, toIterable
int increment()
Range<T> incrementBy(int value)
value
- the new increment.Range<T> decrementBy(int value)
this is equivalent to:
range.incrementBy(-value)
value
- the new increment.boolean encloses(T value)
i.e. if from() <= value
and value < to()
(for positive increments, resp. for
negative ones), regardless the increment value.
For instance a range between 0 and 5 with an increment of 2 encloses 1 but don't contains it.
value
- the value to check.Range<T> reversed()
i.e. swaps the from()
and to()
values and sets the increment to
-increment()
.
default java.lang.Object[] __$$_destruct(int number, boolean substruct, java.lang.Object[] toSkip)
If a remainer if included, it will be a new range with same step and end values, starting to the next available value.
__$$_destruct
in interface HeadTail<T>
number
- number of variable that will be affected.substruct
- whether the destructuring is complete or should contains a sub structure.toSkip
- a boolean array indicating the elements to skip.Range<T> newStartingFrom(T newStart)
There is no check that the newStart
value is compatible with the current start and increment. It is
therefore possible that the new range yields different values than the original.