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