signrel 2.0.0

Trait expressing relationship between integers of different signedness
Documentation

Workflow Status Average time to resolve an issue Percentage of issues still open Maintenance

signrel

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:

use signrel::SignRel;

let a: <isize as SignRel>::Unsigned = 17;
let b: <usize as SignRel>::Unsigned = 17;

assert_eq!(17usize, a);
assert_eq!(17usize, b);

License: Apache-2.0