3 个不稳定版本
0.2.1 | 2020年10月5日 |
---|---|
0.2.0 | 2020年10月5日 |
0.1.0 | 2020年10月4日 |
#2419 在 算法 中
13KB
288 行
int_cmp
Rust整数类型比较库
示例
use int_cmp::IntCmp;
let a = -25_i8;
let b = 64_u8;
assert!(a.cmp_lt(b));
let x = -45000_i32;
let y = 2560000_u64;
assert!(x.cmp_ne(y));
变更日志
- 添加了对usize的支持
贡献
欢迎任何Pull Request,无论您的贡献有多小!
lib.rs
:
允许比较无符号整数和有符号整数
示例
use int_cmp::IntCmp;
let a = -25_i8;
let b = 64_u8;
assert!(a.cmp_lt(b));
let x = -45000_i32;
let y = 2560000_u64;
assert!(x.cmp_ne(y));