max
The maximum representable integer in this type.
Declaration
static var max: UInt128 { get }Discussion
For unsigned integer types, this value is (2 ** bitWidth) - 1, where ** is exponentiation. For signed integer types, this value is (2 ** (bitWidth - 1)) - 1.