Releases: jmathewburns/java-range-fun
Releases · jmathewburns/java-range-fun
Version 3.0.0
Minor changes for this release include:
- Smaller binary size
- One or two bugfixes
- Improved robustness of the API
The most important change, however, is that, with this release, the Range Fun(ctions) library is now fully modularised.
Unsurprisingly, the single module is named 'xyz.jmburns.rangefun'.
Overhauled library
The entire library has now been overhauled, to be simpler, smaller, and more user-friendly. As well as a cleaner design, the library now sports new features common to progressions, such as contains
, and toArray
methods, among others.
Release 1.2.0
Added support for half-closed ranges, like so:
range(0).until(5)
The above range's iterator will return 0, 1, 2, 3, 4
.
First public binary release.
v.1.1.0 Merge remote-tracking branch 'rangefun/master'