Operator

&-(_:_:)

No overview available.

Declaration

static func &- (lhs: Int, rhs: Int) -> Int

See Also

Masked Arithmetic

static func &+ (Int, Int) -> Int

Returns the sum of the two given values, wrapping the result in case of any overflow.

static func &- (Int, Int) -> Int

Returns the difference of the two given values, wrapping the result in case of any overflow.

static func &* (Int, Int) -> Int

Returns the product of the two given values, wrapping the result in case of any overflow.

static func &+= (inout Int, Int)

Adds two values and stores the result in the left-hand-side variable, wrapping any overflow.

static func &-= (inout Int, Int)

Subtracts the second value from the first and stores the difference in the left-hand-side variable, wrapping any overflow.

static func &*= (inout Int, Int)

Multiplies two values and stores the result in the left-hand-side variable, wrapping any overflow.