Trait Abs
float_traits
pub trait Abs { type Output: Num; fn abs(self) -> Self::Output; }
type Output: Num
fn abs(self) -> Self::Output
impl Abs for f32
type Output = f32
fn abs(self) -> Self
impl<'a> Abs for &'a f32
fn abs(self) -> f32
impl Abs for f64
type Output = f64
impl<'a> Abs for &'a f64
fn abs(self) -> f64