#range #array #utility

arrange

为使用范围值填充数组提供便捷函数

1 个不稳定版本

0.1.3 2021年4月15日
0.1.2 2021年4月15日
0.1.1 2021年4月15日
0.1.0 2021年4月14日

#195 in #range

Unlicense/MIT

8KB
78 行代码(不包括注释)

arrange

使用范围值填充数组提供便捷函数。

Build status

双许可下 MIT 或 UNLICENSE。

文档

https://docs.rs/arrange

安装

此包与 Cargo 兼容,位于 crates.io
该软件包将定期更新。将其添加到您的 Cargo.toml 中,如下所示

[dependencies]
arrange = "0.1.3"

示例

用法简单

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]);
}

实现状态

有些人可能希望使用负索引,但我们目前不会实现这一点,因为它们容易出错。

还有很多工作要做。

请确保使用 0.1.1 或更高版本。

无运行时依赖