[][src]Trait ramp::traits::DivRem

pub trait DivRem<RHS = Self> {
    type Output;
    fn divrem(self, rhs: RHS) -> Self::Output;
}

A trait for types which can compute division and remainder in one step.

Associated Types

type Output

Loading content...

Required methods

fn divrem(self, rhs: RHS) -> Self::Output

Loading content...

Implementors

impl DivRem<i32> for Int[src]

type Output = (Int, i32)

impl DivRem<u32> for Int[src]

type Output = (Int, BaseInt)

impl DivRem<usize> for Int[src]

type Output = (Int, usize)

impl DivRem<Limb> for Int[src]

type Output = (Int, Limb)

impl<'a, 'b> DivRem<&'a Int> for &'b Int[src]

type Output = (Int, Int)

Loading content...