/(_:_:)
Returns the quotient of dividing the first value by the second.
Declaration
static func / (lhs: Self, rhs: Self) -> SelfParameters
- lhs:
The value to divide.
- rhs:
The value to divide
lhsby.rhsmust not be zero.
Discussion
For integer types, any remainder of the division is discarded.
let x = 21 / 5
// x == 4