[][src]Trait geng_core::prelude::UNum

pub trait UNum: PartialEq<Self> + PartialOrd<Self> + Copy + Add<Self, Output = Self> + Sub<Self, Output = Self> + Mul<Self, Output = Self> + Div<Self, Output = Self> + AddAssign<Self> + SubAssign<Self> + MulAssign<Self> + DivAssign<Self> + Debug + Display {
    const ZERO: Self;
    const ONE: Self;
}

Associated Constants

const ZERO: Self

const ONE: Self

Loading content...

Implementations on Foreign Types

impl UNum for i16[src]

impl UNum for f64[src]

impl UNum for usize[src]

impl UNum for i32[src]

impl UNum for u8[src]

impl UNum for u64[src]

impl UNum for u16[src]

impl UNum for i8[src]

impl UNum for isize[src]

impl UNum for f32[src]

impl UNum for i64[src]

impl UNum for u32[src]

Loading content...

Implementors

impl<T> UNum for RealImpl<T> where
    T: Float
[src]

Loading content...