A value to compare. 比較する値。
Operator
演算子
==(_:
==(_:_:)
Returns a Boolean value that Indicates whether two values are equal.
Availability 有効性
- iOS 9.0+
- iPadOS 9.0+
- macOS 10.11+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 7.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func == (lhs: PersonNameComponents
, rhs: PersonNameComponents
) -> Bool
Parameters パラメータ
lhs
rhs
Another value to compare. もう一方の比較する値。
Return Value 戻り値
A Boolean value that Indicates whether two values are equal.
Discussion 議論
Equality is the inverse of inequality. For any values a
and b
, a == b
implies that a != b
is false
.
同等性は、不等性の裏返しです。何らかのa
とb
に対して、a == b
はa != b
がfalse
であることを意味します。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Comparing Person Name Components 個人名構成要素を比較する
static func != (PersonNameComponents, PersonNameComponents) -> Bool
Returns a Boolean value that indicates whether two values are not equal.
あるブール値を返します、それは2つの値が等しくないかどうかを指し示します。