Returns the product of this value and the given value, along with a Boolean value indicating whether overflow occurred in the operation.
SDK
- Xcode 7.1+
Framework
- Swift Standard Library
Declaration
Parameters
rhs
The value to multiply by this value.
Return Value
A tuple containing the result of the multiplication along with a Boolean value indicating whether overflow occurred. If the overflow
component is false
, the partial
component contains the entire product. If the overflow
component is true
, an overflow occurred and the partial
component contains the truncated product of this value and rhs
.