Subtracts one value from another and produces their difference, rounded to a representable value.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Parameters
lhs
A numeric value.
rhs
The value to subtract from
lhs
.
Discussion
The subtraction operator (-
) calculates the difference of its two arguments. For example:
The -
operator implements the subtraction operation defined by the IEEE 754 specification.
Note
This documentation comment was inherited from Floating
.