static func == <LeftHandSideType, RightHandSideType>(Measurement<LeftHandSideType>, Measurement<RightHandSideType>) -> Bool
Returns a Boolean value that indicates whether two values are equal.
あるブール値を返します、それは2つの値が等しいかどうかを指し示します。
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 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番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。