Trait argmin::prelude::WrappingMul[][src]

pub trait WrappingMul: Mul<Self, Output = Self> {
    fn wrapping_mul(&self, v: &Self) -> Self;
}
Expand description

Performs multiplication that wraps around on overflow.

Required methods

fn wrapping_mul(&self, v: &Self) -> Self[src]

Wrapping (modular) multiplication. Computes self * other, wrapping around at the boundary of the type.

Implementations on Foreign Types

impl WrappingMul for i64[src]

pub fn wrapping_mul(&self, v: &i64) -> i64[src]

impl WrappingMul for usize[src]

pub fn wrapping_mul(&self, v: &usize) -> usize[src]

impl WrappingMul for u64[src]

pub fn wrapping_mul(&self, v: &u64) -> u64[src]

impl WrappingMul for u128[src]

pub fn wrapping_mul(&self, v: &u128) -> u128[src]

impl WrappingMul for u32[src]

pub fn wrapping_mul(&self, v: &u32) -> u32[src]

impl WrappingMul for i16[src]

pub fn wrapping_mul(&self, v: &i16) -> i16[src]

impl WrappingMul for u16[src]

pub fn wrapping_mul(&self, v: &u16) -> u16[src]

impl WrappingMul for u8[src]

pub fn wrapping_mul(&self, v: &u8) -> u8[src]

impl WrappingMul for i32[src]

pub fn wrapping_mul(&self, v: &i32) -> i32[src]

impl WrappingMul for isize[src]

pub fn wrapping_mul(&self, v: &isize) -> isize[src]

impl WrappingMul for i128[src]

pub fn wrapping_mul(&self, v: &i128) -> i128[src]

impl<T> WrappingMul for Wrapping<T> where
    T: WrappingMul,
    Wrapping<T>: Mul<Wrapping<T>>,
    <Wrapping<T> as Mul<Wrapping<T>>>::Output == Wrapping<T>, 
[src]

pub fn wrapping_mul(&self, v: &Wrapping<T>) -> Wrapping<T>[src]

impl WrappingMul for i8[src]

pub fn wrapping_mul(&self, v: &i8) -> i8[src]

Implementors