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