This crate provides the SignRel
trait which maps relationships between
integers that only differ by signedness. For example, both a
and b
in
this example have the type usize
:
```rust use signrel::SignRel;
let a:
asserteq!(17usize, a); asserteq!(17usize, b); ```
License: Apache-2.0