1 unstable release
0.1.3 | Apr 15, 2021 |
---|---|
0.1.2 |
|
0.1.1 |
|
0.1.0 |
|
#224 in #range
8KB
78 lines
arrange
Convenience functions for populating an array with values from a range.
Dual-licensed under MIT or the UNLICENSE.
Documentation
Installation
This crate works with Cargo and is on
crates.io.
The package will be regularly updated.
Add it to your Cargo.toml
like so:
[dependencies]
arrange = "0.1.3"
Examples
Usage is simple:
extern crate arrange;
use arrange::IntRange;
fn main() {
assert_eq!(IntRange::new(1, 10, 1).range(), [1, 2, 3, 4, 5, 6, 7, 8, 9]);
}
Status of implementation
Some may want to negative indexing but we won't implement that for the time being since they can be prone to bugs.
Still a lot of work to do.
Make sure to use version 0.1.1 or above.