static func & (Int, Int) -> Int
Returns the result of performing a bitwise AND operation on the two given values.
ビット単位AND演算を2つの与えられた値に関して実行する結果を返します。
static func &= (inout Int, Int)
Stores the result of performing a bitwise AND operation on the two given values in the left-hand-side variable.
ビット単位AND演算を2つの与えられた値に関して実行する結果を左手側の変数に格納します。
static func | (Int, Int) -> Int
Returns the result of performing a bitwise OR operation on the two given values.
ビット単位OR演算を2つの与えられた値に関して実行する結果を返します。
static func |= (inout Int, Int)
Stores the result of performing a bitwise OR operation on the two given values in the left-hand-side variable.
ビット単位OR演算を2つの与えられた値に関して実行する結果を左手側の変数に格納します。
static func ^ (Int, Int) -> Int
Returns the result of performing a bitwise XOR operation on the two given values.
ビット単位XOR演算を2つの与えられた値に関して実行する結果を返します。
static func ^= (inout Int, Int)
Stores the result of performing a bitwise XOR operation on the two given values in the left-hand-side variable.
ビット単位XOR演算を2つの与えられた値に関して実行する結果を左手側の変数に格納します。