Skip to main content

Abs

Trait Abs 

Source
pub trait Abs {
    type Output;
}
Expand description

A type operator that returns the absolute value.

§Example

use typenum::{Abs, Integer, N5};

assert_eq!(<N5 as Abs>::Output::to_i32(), 5);

Required Associated Types§

Source

type Output

The absolute value.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§