1use core::ops::{Mul, MulAssign}; 2 3use crate::decimal::{impls::ops::ops_impl, UnsignedDecimal}; 4 5ops_impl!(UnsignedDecimal, U, Mul, mul, MulAssign, mul_assign);