Multiplies two values and produces their product, rounding to a representable value.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Parameters
lhs
The first value to multiply.
rhs
The second value to multiply.
Discussion
The multiplication operator (*
) calculates the product of its two arguments. For example:
The *
operator implements the multiplication operation defined by the IEEE 754 specification.
Note
This documentation comment was inherited from Floating
.