Operator 演算子

!=(_:_:)

Returns a Boolean value that indicates whether two values are unequal. あるブール値を返します、それは2つの値が等しくないかどうかを指し示します。

Declaration 宣言

static func != (lhs: Measurement<UnitType>, rhs: Measurement<UnitType>) -> Bool

Parameters パラメータ

lhs

A value to compare. 比較する値。

rhs

Another value to compare. もう一方の比較する値。

Return Value 戻り値

true if the measurements are unequal. 寸法それらが等しくないならばtrue

Discussion 議論

Inequality is the inverse of equality. For any values a and b, a != b implies that a == b is false. 不等性は、同等性の裏返しです。何らかのabに対して、a != ba == bfalseであることを意味します。

This is the default implementation of the not-equal-to operator (!=) for any type that conforms to Equatable. これは不等演算子(!=)の、Equatableに準拠するあらゆる型に対する初期状態の実装です。

See Also 参照

Comparing Measurements 寸法を比較する