Multiplies this integer by another one and returns the value if no overflow occurred.
impl Wsize {
fn checked_mul(self, other: usize) -> Option<Wsize>
}| Name | Description |
|---|---|
| other | The integer that will be multiplied. |
Returns the product if no overflow occurred, None otherwise.