[][src]Trait zkp_u256::DivRem

pub trait DivRem<Rhs> {
    type Quotient;
    type Remainder;
    pub fn div_rem(&self, rhs: Rhs) -> Option<(Self::Quotient, Self::Remainder)>;
}

Associated Types

Loading content...

Required methods

pub fn div_rem(&self, rhs: Rhs) -> Option<(Self::Quotient, Self::Remainder)>[src]

Loading content...

Implementors

impl DivRem<u64> for U256[src]

type Quotient = Self

type Remainder = u64

impl<'_> DivRem<&'_ U256> for U256[src]

type Quotient = Self

type Remainder = Self

Loading content...