sergetsyba / core-collections

Modern collections for Java.
MIT License
0 stars 0 forks source link

Generalize IndexRange. #12

Open sergetsyba opened 1 year ago

sergetsyba commented 1 year ago

Create an interface Range<T> extends Sequence<T>, which guarantees monotonicity of its items. Change IndexRange to IntRange and implement Range<Integer>.

Problems:

sergetsyba commented 4 months ago

IndexRange now conforms to Sequence<Integer>.