Trait typenum::type_operators::Abs [−][src]
A type operator that returns the absolute value.
Example
use typenum::{Abs, Integer, N5}; assert_eq!(<N5 as Abs>::Output::to_i32(), 5);
A type operator that returns the absolute value.
use typenum::{Abs, Integer, N5}; assert_eq!(<N5 as Abs>::Output::to_i32(), 5);
impl Abs for Z0
[src]impl<U: Unsigned + NonZero> Abs for NInt<U>
[src]impl<U: Unsigned + NonZero> Abs for PInt<U>
[src]type Output = Self