/(_:_:)
Returns the quotient of dividing the first value by the second.
Declaration
static func / (a: UInt128, b: UInt128) -> UInt128Discussion
For integer types, any remainder of the division is discarded.
let x = 21 / 5
// x == 4Returns the quotient of dividing the first value by the second.
static func / (a: UInt128, b: UInt128) -> UInt128For integer types, any remainder of the division is discarded.
let x = 21 / 5
// x == 4