A value to compare. 比較する値。
Operator
演算子
!=(_:
!=(_:_:)
Returns a Boolean value indicating whether two values are not equal.
2つの値が等しくないかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
lhs
rhs
Another value to compare. もう一方の比較する値。
Discussion 解説
Inequality is the inverse of equality. For any values a
and b
, a != b
implies that a == b
is false
.
不等性は、同等性の裏返しです。何らかのa
とb
に対して、a != b
はa == b
がfalse
であることを意味します。
This is the default implementation of the not-equal-to operator (!=
) for any type that conforms to Equatable
.
Equatable
に準拠するあらゆる型に対して、不等演算子(!=
)の初期状態の実装です。