1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
use super::CheckedUnsignedAbs::{Negative, Positive}; use super::Sign::{self, Minus, NoSign, Plus}; use super::{BigInt, UnsignedAbs}; use crate::{IsizePromotion, UsizePromotion}; use core::iter::Product; use core::ops::{Mul, MulAssign}; use num_traits::{CheckedMul, One, Zero}; impl Mul<Sign> for Sign { type Output = Sign; #[inline] fn mul(self, other: Sign) -> Sign { match (self, other) { (NoSign, _) | (_, NoSign) => NoSign, (Plus, Plus) | (Minus, Minus) => Plus, (Plus, Minus) | (Minus, Plus) => Minus, } } } forward_all_binop_to_ref_ref!(impl Mul for BigInt, mul); impl<'a, 'b> Mul<&'b BigInt> for &'a BigInt { type Output = BigInt; #[inline] fn mul(self, other: &BigInt) -> BigInt { BigInt::from_biguint(self.sign * other.sign, &self.data * &other.data) } } impl<'a> MulAssign<&'a BigInt> for BigInt { #[inline] fn mul_assign(&mut self, other: &BigInt) { *self = &*self * other; } } forward_val_assign!(impl MulAssign for BigInt, mul_assign); promote_all_scalars!(impl Mul for BigInt, mul); promote_all_scalars_assign!(impl MulAssign for BigInt, mul_assign); forward_all_scalar_binop_to_val_val_commutative!(impl Mul<u32> for BigInt, mul); forward_all_scalar_binop_to_val_val_commutative!(impl Mul<u64> for BigInt, mul); forward_all_scalar_binop_to_val_val_commutative!(impl Mul<u128> for BigInt, mul); impl Mul<u32> for BigInt { type Output = BigInt; #[inline] fn mul(self, other: u32) -> BigInt { BigInt::from_biguint(self.sign, self.data * other) } } impl MulAssign<u32> for BigInt { #[inline] fn mul_assign(&mut self, other: u32) { self.data *= other; if self.data.is_zero() { self.sign = NoSign; } } } impl Mul<u64> for BigInt { type Output = BigInt; #[inline] fn mul(self, other: u64) -> BigInt { BigInt::from_biguint(self.sign, self.data * other) } } impl MulAssign<u64> for BigInt { #[inline] fn mul_assign(&mut self, other: u64) { self.data *= other; if self.data.is_zero() { self.sign = NoSign; } } } impl Mul<u128> for BigInt { type Output = BigInt; #[inline] fn mul(self, other: u128) -> BigInt { BigInt::from_biguint(self.sign, self.data * other) } } impl MulAssign<u128> for BigInt { #[inline] fn mul_assign(&mut self, other: u128) { self.data *= other; if self.data.is_zero() { self.sign = NoSign; } } } forward_all_scalar_binop_to_val_val_commutative!(impl Mul<i32> for BigInt, mul); forward_all_scalar_binop_to_val_val_commutative!(impl Mul<i64> for BigInt, mul); forward_all_scalar_binop_to_val_val_commutative!(impl Mul<i128> for BigInt, mul); impl Mul<i32> for BigInt { type Output = BigInt; #[inline] fn mul(self, other: i32) -> BigInt { match other.checked_uabs() { Positive(u) => self * u, Negative(u) => -self * u, } } } impl MulAssign<i32> for BigInt { #[inline] fn mul_assign(&mut self, other: i32) { match other.checked_uabs() { Positive(u) => *self *= u, Negative(u) => { self.sign = -self.sign; self.data *= u; } } } } impl Mul<i64> for BigInt { type Output = BigInt; #[inline] fn mul(self, other: i64) -> BigInt { match other.checked_uabs() { Positive(u) => self * u, Negative(u) => -self * u, } } } impl MulAssign<i64> for BigInt { #[inline] fn mul_assign(&mut self, other: i64) { match other.checked_uabs() { Positive(u) => *self *= u, Negative(u) => { self.sign = -self.sign; self.data *= u; } } } } impl Mul<i128> for BigInt { type Output = BigInt; #[inline] fn mul(self, other: i128) -> BigInt { match other.checked_uabs() { Positive(u) => self * u, Negative(u) => -self * u, } } } impl MulAssign<i128> for BigInt { #[inline] fn mul_assign(&mut self, other: i128) { match other.checked_uabs() { Positive(u) => *self *= u, Negative(u) => { self.sign = -self.sign; self.data *= u; } } } } impl CheckedMul for BigInt { #[inline] fn checked_mul(&self, v: &BigInt) -> Option<BigInt> { Some(self.mul(v)) } } impl_product_iter_type!(BigInt);