arrange 0.1.3

Convenience functions for populating an array with values from a range.
Documentation
  • Coverage
  • 50%
    5 out of 10 items documented0 out of 8 items with examples
  • Size
  • Source code size: 12.51 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.51 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • cryptopatrick/arrange
    0 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cryptopatrick

arrange

Convenience functions for populating an array with values from a range.

Build status

Dual-licensed under MIT or the UNLICENSE.

Documentation

https://docs.rs/arrange

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.