Trait concision_core::traits::math::FloorDiv

source ·
pub trait FloorDiv<Rhs = Self> {
    type Output;

    // Required method
    fn floor_div(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn floor_div(self, rhs: Rhs) -> Self::Output

Implementors§

source§

impl<T> FloorDiv for T
where T: Copy + Num,

§

type Output = T