An integer value. ある整数値。
Operator
演算子
&(_:
&(_:_:)
Returns the result of performing a bitwise AND operation on the two given values.
ビット単位AND演算を2つの与えられた値に関して実行する結果を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
lhs
rhs
Another integer value. もう1つの整数値。
Discussion 解説
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
に設定するところです。例えば:
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Bitwise Operations ビット単位演算
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つの与えられた値に関して実行する結果を左手側の変数に格納します。
static func ~ (Int) -> Int
Returns the inverse of the bits set in the argument.
引数におけるビットの逆順を返します。