Trait malachite_base::num::arithmetic::traits::SubMulAssign

source ·
pub trait SubMulAssign<Y = Self, Z = Self> {
    // Required method
    fn sub_mul_assign(&mut self, y: Y, z: Z);
}
Expand description

Subtracts a number by the product of two other numbers, in place.

Required Methods§

source

fn sub_mul_assign(&mut self, y: Y, z: Z)

Implementations on Foreign Types§

source§

impl SubMulAssign for f32

source§

fn sub_mul_assign(&mut self, y: f32, z: f32)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for f64

source§

fn sub_mul_assign(&mut self, y: f64, z: f64)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for i8

source§

fn sub_mul_assign(&mut self, y: i8, z: i8)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for i16

source§

fn sub_mul_assign(&mut self, y: i16, z: i16)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for i32

source§

fn sub_mul_assign(&mut self, y: i32, z: i32)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for i64

source§

fn sub_mul_assign(&mut self, y: i64, z: i64)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for i128

source§

fn sub_mul_assign(&mut self, y: i128, z: i128)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for isize

source§

fn sub_mul_assign(&mut self, y: isize, z: isize)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for u8

source§

fn sub_mul_assign(&mut self, y: u8, z: u8)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for u16

source§

fn sub_mul_assign(&mut self, y: u16, z: u16)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for u32

source§

fn sub_mul_assign(&mut self, y: u32, z: u32)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for u64

source§

fn sub_mul_assign(&mut self, y: u64, z: u64)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for u128

source§

fn sub_mul_assign(&mut self, y: u128, z: u128)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

source§

impl SubMulAssign for usize

source§

fn sub_mul_assign(&mut self, y: usize, z: usize)

Subtracts a number by the product of two other numbers in place.

$x \gets x - yz$.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Implementors§