7 个版本
0.1.6 | 2022年6月22日 |
---|---|
0.1.5 | 2021年9月27日 |
0.1.1 | 2021年3月31日 |
12 in #digits
4KB
Repunit
日语 | 英语 |
---|
日语版请见此处
Repunit 生成库
安装
这个包是一个库,因此不能使用 cargo install
来安装。
如果您要在您的应用程序中使用此库,请在 Cargo.toml
中添加以下行
[dependencies]
repunit = "0.1.6"
使用方法
第一步
use repunit;
将 Repunit 的数字数量转换为 Repunit
repunit::convert(digits)
从 Repunit 恢复到 Repunit 的数字数量
repunit::restore(Repunit)
示例
extern crate repunit;
fn main() {
println!("{}",repunit::convert(repunit::restore(111111)));
}
// => 111111
extern crate repunit;
fn main() {
println!("{}", 3 * repunit::convert(4));
}
// => 3333
开发
要在此本地机上安装此库,请运行 cargo install --path .
。要发布新版本,请更新 Cargo.toml
中的版本号,然后运行 cargo build --release
,这将为版本创建 git 标签,并推送 git 提交和创建的标签。
贡献
欢迎在 GitHub 上提交错误报告和拉取请求 https://github.com/NSK-1010/rust-repunit。
许可证
该软件在 MIT 许可证 的条款下作为开源软件提供。