Trait flechasdb::numbers::Abs

source ·
pub trait Abs {
    // Required method
    fn abs(self) -> Self;
}
Expand description

Represents a number that can return an absolute value.

Required Methods§

source

fn abs(self) -> Self

Returns the absolute value.

Implementations on Foreign Types§

source§

impl Abs for f64

source§

fn abs(self) -> f64

source§

impl Abs for f32

source§

fn abs(self) -> f32

Implementors§