Divides the first value by the second and stores the quotient in the left-hand-side variable.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Divides the first value by the second and stores the quotient in the left-hand-side variable.
SDK
Framework
static func += (inout Int, Int)Adds two values and stores the result in the left-hand-side variable.
static func *= (inout Int, Int)Multiplies two values and stores the result in the left-hand-side variable.
static func %= (inout Int, Int)Divides the first value by the second and stores the remainder in the left-hand-side variable.