Generic Operator

==(_:_:)

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

Declaration 宣言

static func == <LeftHandSideType, RightHandSideType>(lhs: Measurement<LeftHandSideType>, rhs: Measurement<RightHandSideType>) -> Bool where LeftHandSideType : Unit, RightHandSideType : Unit

Parameters パラメータ

lhs

A value to compare. 比較する値。

rhs

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

Return Value 戻り値

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

Discussion 議論

If lhs.unit == rhs.unit, returns lhs.value == rhs.value. Otherwise, converts rhs to the same unit as lhs and then compares the resulting values. lhs.unit == rhs.unitならば、lhs.value == rhs.valueを返します。そうでなければ、rhslhsと同じ単位に変換します、そして結果の値を比較します。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Comparing Measurements 寸法を比較する