Returns the quotient of dividing the first value by the second, rounded to a representable value.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Parameters
lhsThe value to divide.
rhsThe value to divide
lhsby.
Discussion
The division operator (/) calculates the quotient of the division if rhs is nonzero. If rhs is zero, the result of the division is infinity, with the sign of the result matching the sign of lhs.
let x = 16.875
let y = x / 2.25
// y == 7.5
let z = x / 0
// z.isInfinite == true
The / operator implements the division operation defined by the IEEE 754 specification.
Note
This documentation comment was inherited from Floating.