Trait coord::math::VecInt[][src]

pub trait VecInt: Vector where
    Self::Item: VecItem + Integer
{ fn div_euc(&self, other: Self) -> Self; }

A trait for vectors containing integer types

Required Methods

Performs a Eucledian division (i.e: rounds towards negative infinity) operation upon the vector

Implementors