[][src]Trait mathru::algebra::abstr::Real

pub trait Real: Field + Exponential + Trigonometry + Power + Hyperbolic + Lapack + Blas {
    fn ceil(&self) -> Self;
fn floor(&self) -> Self; }

Required methods

fn ceil(&self) -> Self

Returns the smallest integer greater than or equal to a number.

fn floor(&self) -> Self

Returns the largest integer less than or equal to a number.

Loading content...

Implementations on Foreign Types

impl Real for f64[src]

fn ceil(&self) -> Self[src]

Returns the smallest integer greater than or equal to a number.

fn floor(&self) -> Self[src]

Returns the largest integer less than or equal to a number.

impl Real for f32[src]

fn ceil(&self) -> Self[src]

Returns the smallest integer greater than or equal to a number.

fn floor(&self) -> Self[src]

Returns the largest integer less than or equal to a number.

Loading content...

Implementors

impl<T> Real for Complex<T> where
    T: RealT
[src]

fn ceil(&self) -> Self[src]

Returns the smallest integer greater than or equal to a number.

fn floor(&self) -> Self[src]

Returns the largest integer less than or equal to a number.

Loading content...