Trait maths_rs::num::Integer

source ·
pub trait Integer: Number + Shl<Output = Self> + ShlAssign + Shr<Output = Self> + ShrAssign + BitOr<Output = Self> + BitOrAssign + BitAnd<Output = Self> + BitAndAssign + BitXor<Output = Self> + BitXorAssign { }
Expand description

integer point trait for various sized integers

Implementations on Foreign Types§

source§

impl Integer for i16

source§

impl Integer for u32

source§

impl Integer for i8

source§

impl Integer for u64

source§

impl Integer for u16

source§

impl Integer for i64

source§

impl Integer for i32

source§

impl Integer for u8

Implementors§