(self, other: Self)
| 554 | } |
| 555 | |
| 556 | fn mul(self, other: Self) -> ValueResult<Self> { |
| 557 | if self.is_float() { |
| 558 | binary_match!(*(self, other); [F32, F64]) |
| 559 | } else { |
| 560 | binary_match!(wrapping_mul(&self, &other); [I8, I16, I32, I64, I128]) |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | fn sdiv(self, other: Self) -> ValueResult<Self> { |
| 565 | if self.is_float() { |