Trait sc_network::multiaddr::multihash::typenum::Abs [−]
pub trait Abs { type Output; }
Expand description
A type operator that returns the absolute value.
Example
use typenum::{Abs, N5, Integer}; assert_eq!(<N5 as Abs>::Output::to_i32(), 5);
Associated Types
type Output
type Output
The absolute value.