A value to compare. 比較する値。
Operator
演算子
==(_:
==(_:_:)
Returns a Boolean value indicating whether two 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 宣言
Parameters パラメータ
lhs
rhs
Another value to compare. もう一方の比較する値。
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
であることを意味します。
Note 注意
This documentation comment was inherited from Equatable
.
この文書化コメントは、Equatable
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Comparing Scalars スカラーを比較する
static func != (Unicode.Scalar, Unicode.Scalar) -> Bool
Returns a Boolean value indicating whether two values are not equal.
2つの値が等しくないかどうかを指し示すブール値を返します。
static func < (Unicode.Scalar, Unicode.Scalar) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument.
最初の引数の値が2番目の引数のそれより少ないかどうかを指し示しているブール値を返します。
static func <= (Unicode.Scalar, Unicode.Scalar) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。
static func > (Unicode.Scalar, Unicode.Scalar) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument.
最初の引数の値が2番目の引数のそれより大きいかどうかを指し示すブール値を返します。
static func >= (Unicode.Scalar, Unicode.Scalar) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより大きいまたは等しいかどうかを指し示すブール値を返します。