[![Workflow Status](https://github.com/enarx/sev/workflows/test/badge.svg)](https://github.com/enarx/sev/actions?query=workflow%3A%22test%22) [![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/enarx/sev.svg)](https://isitmaintained.com/project/enarx/sev "Average time to resolve an issue") [![Percentage of issues still open](https://isitmaintained.com/badge/open/enarx/sev.svg)](https://isitmaintained.com/project/enarx/sev "Percentage of issues still open") ![Maintenance](https://img.shields.io/badge/maintenance-activly--developed-brightgreen.svg) # 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`: ```rust use signrel::SignRel; let a: ::Unsigned = 17; let b: ::Unsigned = 17; assert_eq!(17usize, a); assert_eq!(17usize, b); ``` License: Apache-2.0