3 个稳定版本
使用旧的 Rust 2015
1.1.0 | 2023年11月11日 |
---|---|
1.0.1 | 2023年10月25日 |
1.0.0 | 2018年5月26日 |
在 Rust 模式 中排名 #854
每月下载 1,259 次
用于 6 个 包(3 个直接使用)
3KB
is-odd
如果给定的数字是奇数,则返回 true。
安装
在 Cargo.toml 中指定依赖关系
[dependencies]
is-odd = "~1.1.0"
使用 cargo 获取
$ cargo build
用法
extern crate is_odd;
use is_odd::IsOdd;
let _i : i32 = 1;
println!("{}", _i.is_odd()); // prints true
已知权衡
目前,库不支持浮点数。