#integer #cmp #int #compare #unsigned-integer #signed-integer

int_cmp

用于比较无符号整数和有符号整数的小型库

3 个不稳定版本

0.2.1 2020年10月5日
0.2.0 2020年10月5日
0.1.0 2020年10月4日

#2419算法

MIT 许可证

13KB
288

int_cmp Crates.io

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

无运行时依赖