static func & (Self, Self) -> Self
Returns the result of performing a bitwise AND operation on the two given values.
ビット単位AND演算を2つの与えられた値に関して実行する結果を返します。
Availability
Technology
static func & (lhs: Self, rhs: Self) -> Self
lhs
An integer value. ある整数値。
rhs
Another integer value. もう1つの整数値。
A bitwise AND operation results in a value that has each bit set to 1
where both of its arguments have that bit set to 1
. For example:
ビット単位AND演算は、ある値という結果になります、それが各ビットを1
に設定するのは、両方のそれの引数が、そのビットを1
に設定するところです。例えば:
static func & (Self, Self) -> Self
static func &= (inout Self, Self)
static func | (Self, Self) -> Self
static func |= (inout Self, Self)
static func ^ (Self, Self) -> Self
static func ^= (inout Self, Self)
static func ~ (Self) -> Self