[][src]Struct inari::Interval

#[repr(C)]pub struct Interval { /* fields omitted */ }

Implementations

impl Interval[src]

pub fn abs(self) -> Self[src]

pub fn min(self, rhs: Self) -> Self[src]

pub fn max(self, rhs: Self) -> Self[src]

impl Interval[src]

pub fn mul_add(self, rhs: Self, addend: Self) -> Self[src]

pub fn recip(self) -> Self[src]

pub fn sqr(self) -> Self[src]

pub fn sqrt(self) -> Self[src]

impl Interval[src]

pub fn disjoint(self, rhs: Self) -> bool[src]

pub fn interior(self, rhs: Self) -> bool[src]

pub fn is_common_interval(self) -> bool[src]

pub fn is_empty(self) -> bool[src]

pub fn is_entire(self) -> bool[src]

pub fn is_member(f: f64, rhs: Self) -> bool[src]

pub fn is_singleton(self) -> bool[src]

pub fn less(self, rhs: Self) -> bool[src]

pub fn precedes(self, rhs: Self) -> bool[src]

pub fn strict_less(self, rhs: Self) -> bool[src]

pub fn strict_precedes(self, rhs: Self) -> bool[src]

pub fn subset(self, rhs: Self) -> bool[src]

impl Interval[src]

impl Interval[src]

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

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

pub fn round_ties_to_away(self) -> Self[src]

pub fn round_ties_to_even(self) -> Self[src]

pub fn sign(self) -> Self[src]

pub fn trunc(self) -> Self[src]

impl Interval[src]

pub fn empty() -> Self[src]

pub fn entire() -> Self[src]

impl Interval[src]

pub fn inf(self) -> f64[src]

pub fn mag(self) -> f64[src]

pub fn mid(self) -> f64[src]

pub fn mig(self) -> f64[src]

pub fn rad(self) -> f64[src]

pub fn sup(self) -> f64[src]

pub fn wid(self) -> f64[src]

impl Interval[src]

pub fn overlap(self, rhs: Self) -> OverlappingState[src]

impl Interval[src]

pub fn convex_hull(self, rhs: Self) -> Self[src]

pub fn intersection(self, rhs: Self) -> Self[src]

Trait Implementations

impl Add<Interval> for Interval[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<Interval> for Interval[src]

impl Clone for Interval[src]

impl Copy for Interval[src]

impl Debug for Interval[src]

impl Display for Interval[src]

impl Div<Interval> for Interval[src]

type Output = Self

The resulting type after applying the / operator.

impl DivAssign<Interval> for Interval[src]

impl Eq for Interval[src]

impl FromStr for Interval[src]

type Err = IntervalError<Interval>

The associated error which can be returned from parsing.

impl LowerExp for Interval[src]

impl LowerHex for Interval[src]

impl Mul<Interval> for Interval[src]

type Output = Self

The resulting type after applying the * operator.

impl MulAssign<Interval> for Interval[src]

impl Neg for Interval[src]

type Output = Self

The resulting type after applying the - operator.

impl PartialEq<Interval> for Interval[src]

impl Sub<Interval> for Interval[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<Interval> for Interval[src]

impl TryFrom<(f64, f64)> for Interval[src]

type Error = IntervalError<Interval>

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Az for T[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedAs for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> OverflowingAs for T[src]

impl<T> SaturatingAs for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> WrappingAs for T[src]