A value to compare. 比較する値。
Generic Operator==(_:
==(_:_:)
Returns a Boolean value that indicates whether two values are equal.
あるブール値を返します、それは2つの値が等しいかどうかを指し示します。
Availability 有効性
- iOS 10.0+
- iPadOS 10.0+
- macOS 10.12+
- Mac Catalyst 13.0+
- tvOS 10.0+
- watchOS 3.0+
- Xcode 8.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func == <LeftHandSideType , RightHandSideType >(lhs: Measurement
<LeftHandSideType >, rhs: Measurement
<RightHandSideType >) -> Bool
where LeftHandSideType : Unit
, RightHandSideType : Unit
Parameters パラメータ
lhs
rhs
Another value to compare. もう一方の比較する値。
Return Value 戻り値
true
if the measurements are equal.
寸法それらが等しいならばtrue
。
Discussion 議論
If lhs
, returns lhs
. Otherwise, converts rhs
to the same unit as lhs
and then compares the resulting values.
lhs
ならば、lhs
を返します。そうでなければ、rhs
をlhs
と同じ単位に変換します、そして結果の値を比較します。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Comparing Measurements 寸法を比較する
static func != (Measurement<UnitType>, Measurement<UnitType>) -> Bool
Returns a Boolean value that indicates whether two values are unequal.
あるブール値を返します、それは2つの値が等しくないかどうかを指し示します。
static func > (Measurement<UnitType>, Measurement<UnitType>) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument.
最初の引数の値が2番目の引数のそれより大きいかどうかを指し示すブール値を返します。
static func >= (Measurement<UnitType>, Measurement<UnitType>) -> 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番目の引数のそれより大きいまたは等しいかどうかを指し示すブール値を返します。
static func < <LeftHandSideType, RightHandSideType>(Measurement<LeftHandSideType>, Measurement<RightHandSideType>) -> Bool
Compare two measurements of the same
Unit
.
同じUnit
の2つの寸法を比較します。
static func <= (Measurement<UnitType>, Measurement<UnitType>) -> 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番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。