An integer to compare. 比較する整数。
Generic Operator==(_:
==(_:_:)
Returns a Boolean value indicating whether the two given values are equal.
2つの与えられた値が等しいかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func == <Other>(lhs: UInt32
, rhs: Other) -> Bool
where Other : BinaryInteger
Parameters パラメータ
lhs
rhs
Another integer to compare. 比較するもう一方の整数。
Discussion 解説
You can check the equality of instances of any Binary
types using the equal-to operator (==
). For example, you can test whether the first UInt8
value in a string’s UTF-8 encoding is equal to the first UInt32
value in its Unicode scalar view:
あなたは、何らかのBinary
型のインスタンスの同等性を同等演算子(==
)使って確認できます。例えば、あなたはある文字列のUTF-8符号化の中の最初のUInt8
値が、それのユニコードスカラー値での最初のUInt32
と等しいかどうかを試験できます。