Trait nalgebra::Bounded [] [src]

pub trait Bounded {
    fn min_value() -> Self;
    fn max_value() -> Self;
}

Types that have maximum and minimum value.

Required Methods

fn min_value() -> Self

The minimum value.

fn max_value() -> Self

The maximum value.

Implementors