[]Trait geng::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 isize

impl UNum for i16

impl UNum for i32

impl UNum for u64

impl UNum for u8

impl UNum for f64

impl UNum for u32

impl UNum for i8

impl UNum for i64

impl UNum for u16

impl UNum for usize

impl UNum for f32

Loading content...

Implementors

impl<T> UNum for RealImpl<T> where
    T: Float

Loading content...