Releases: slightlyoutofphase/staticstep
Releases · slightlyoutofphase/staticstep
0.4.2
0.4.1
This release makes specific handling of RangeFrom
from IncBy
more robust / complete than it was previously.
0.4.0
This release fully overhauls the crate to add completely uniform, StepBy
-equivalent integer overflow handling.
0.3.0
This release fixes a bug where IncBy
could in some cases cause an integer overflow immediately after being created depending on what integral type T
was relative to usize
.
0.2.2
- This release just removes the
step_trait_ext
feature flag, which no longer exists and as such was preventing the crate from building successfully.
0.2.1
- Fixes a few more
DecBy
behavior edge cases - Further simplifies / optimizes the iterator implementation for both
IncBy
andDecBy
0.2.0
- Adds proper docs
- Improves performance of
DecBy
(making it exactly as optimizable asIncBy
) and also fixes various edge case bugs I found inDecBy
's behavior