Trait typenum::type_operators::Abs  [−][src]
pub trait Abs {
    type Output;
}A type operator that returns the absolute value.
Example
use typenum::{Abs, Integer, N5}; assert_eq!(<N5 as Abs>::Output::to_i32(), 5);
Associated Types
Loading content...Implementors
Loading content...