pub struct PreMulInv1by1<T> { /* private fields */ }
Expand description

Divide a Word by a prearranged divisor.

Granlund, Montgomerry “Division by Invariant Integers using Multiplication” Algorithm 4.1.

Implementations§

source§

impl PreMulInv1by1<u8>

source

pub const fn new(divisor: u8) -> Self

source

pub const fn div_rem(&self, a: u8, d: u8) -> (u8, u8)

(a / divisor, a % divisor)

source§

impl PreMulInv1by1<u16>

source

pub const fn new(divisor: u16) -> Self

source

pub const fn div_rem(&self, a: u16, d: u16) -> (u16, u16)

(a / divisor, a % divisor)

source§

impl PreMulInv1by1<u32>

source

pub const fn new(divisor: u32) -> Self

source

pub const fn div_rem(&self, a: u32, d: u32) -> (u32, u32)

(a / divisor, a % divisor)

source§

impl PreMulInv1by1<u64>

source

pub const fn new(divisor: u64) -> Self

source

pub const fn div_rem(&self, a: u64, d: u64) -> (u64, u64)

(a / divisor, a % divisor)

source§

impl PreMulInv1by1<usize>

source

pub const fn new(divisor: usize) -> Self

source

pub const fn div_rem(&self, a: usize, d: usize) -> (usize, usize)

(a / divisor, a % divisor)

Trait Implementations§

source§

impl<T: Clone> Clone for PreMulInv1by1<T>

source§

fn clone(&self) -> PreMulInv1by1<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for PreMulInv1by1<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl DivExact<u16, PreMulInv1by1<u16>> for u16

§

type Output = u16

source§

fn div_exact(self, d: u16, pre: &PreMulInv1by1<u16>) -> Option<Self::Output>

Check if d divides self with the help of the precomputation. If d divides self, then the quotient is returned.
source§

impl DivExact<u32, PreMulInv1by1<u32>> for u32

§

type Output = u32

source§

fn div_exact(self, d: u32, pre: &PreMulInv1by1<u32>) -> Option<Self::Output>

Check if d divides self with the help of the precomputation. If d divides self, then the quotient is returned.
source§

impl DivExact<u64, PreMulInv1by1<u64>> for u64

§

type Output = u64

source§

fn div_exact(self, d: u64, pre: &PreMulInv1by1<u64>) -> Option<Self::Output>

Check if d divides self with the help of the precomputation. If d divides self, then the quotient is returned.
source§

impl DivExact<u8, PreMulInv1by1<u8>> for u8

§

type Output = u8

source§

fn div_exact(self, d: u8, pre: &PreMulInv1by1<u8>) -> Option<Self::Output>

Check if d divides self with the help of the precomputation. If d divides self, then the quotient is returned.
source§

impl DivExact<usize, PreMulInv1by1<usize>> for usize

§

type Output = usize

source§

fn div_exact(self, d: usize, pre: &PreMulInv1by1<usize>) -> Option<Self::Output>

Check if d divides self with the help of the precomputation. If d divides self, then the quotient is returned.
source§

impl<T: PartialEq> PartialEq<PreMulInv1by1<T>> for PreMulInv1by1<T>

source§

fn eq(&self, other: &PreMulInv1by1<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Copy> Copy for PreMulInv1by1<T>

source§

impl<T: Eq> Eq for PreMulInv1by1<T>

source§

impl<T> StructuralEq for PreMulInv1by1<T>

source§

impl<T> StructuralPartialEq for PreMulInv1by1<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for PreMulInv1by1<T>where T: RefUnwindSafe,

§

impl<T> Send for PreMulInv1by1<T>where T: Send,

§

impl<T> Sync for PreMulInv1by1<T>where T: Sync,

§

impl<T> Unpin for PreMulInv1by1<T>where T: Unpin,

§

impl<T> UnwindSafe for PreMulInv1by1<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.