#numbers #add #str

bin+lib add-one

对数字加一

9 个版本 (1 个稳定版)

使用旧的 Rust 2015

1.0.0 2018年10月6日
0.2.4 2018年10月6日
0.2.3 2018年9月17日
0.2.2 2018年8月26日
0.1.2 2018年8月25日

#66#str

48 每月下载量

MIT 许可证

9KB
150

add-one

crate documentation minimum rustc 1.26 Travis status

返回 n + 1。

用法

将此添加到您的 Cargo.toml

[dependencies]
add-one = "1.0"

并将此添加到您的 crate 根目录

extern crate add_one;

示例

extern crate add_one;
use add_one::add_one;

use std::str;

fn main() {
    let mut bytes = Vec::new();

    match add_one("123".as_bytes(), &mut bytes) {
        Ok(()) => println!("{}", str::from_utf8(&bytes).unwrap()),
        Err(e) => {
            eprintln!("Error: {}", e);
        }
    }
}

$ cargo run 12
$ 13

感谢

许可证

许可协议

兼容性

add-one crate 在 rustc 1.26 及更高版本上进行测试。

无运行时依赖