#value #unsigned #absolute #abs #unsigned-integer

uabs

Absolute value function that returns an unsigned integer

3 stable releases

3.0.0 Sep 7, 2020
2.0.0 Sep 7, 2020
1.0.0 Oct 10, 2018

#13 in #unsigned

49 downloads per month
Used in lebicon

Apache-2.0

7KB
56 lines

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

uabs

This crate provides the UnsignedAbs trait containing a function uabs() which calculates the absolute value of the input and returns it as an unsigned integer of the same size as the input. For example:

use uabs::Uabs;

let x: i8 = -128;
let y: u8 = x.uabs();
assert_eq!(y, 128);

License: Apache-2.0


lib.rs:

This crate provides the UnsignedAbs trait containing a function uabs() which calculates the absolute value of the input and returns it as an unsigned integer of the same size as the input. For example:

use uabs::Uabs;

let x: i8 = -128;
let y: u8 = x.uabs();
assert_eq!(y, 128);

Dependencies

~7KB