int_cmp

Rust Integer Types Comparison Library

Example

```rust, norun use intcmp::IntCmp;

let a = -25i8; let b = 64u8; assert!(a.cmp_lt(b));

let x = -45000i32; let y = 2560000u64; assert!(x.cmp_ne(y)); ```

Contributing

Any Pull Request is welcome, however small your contribution may be !