Instance Method インスタンスメソッド

compare(_:)

Compares this decimal number and another. この10進数を別のものと比較します。

Declaration 宣言

func compare(_ decimalNumber: NSNumber) -> ComparisonResult

Parameters パラメータ

decimalNumber

The number with which to compare the receiver. それとレシーバを比較することになる数。

This value must not be nil. If this value is nil, the behavior is undefined and may change in future versions of macOS. この値は、nilではいけません。この値がnilならば、その挙動は未定義です、そして将来のバージョンのmacOSでは変わるかもしれません。

Return Value 戻り値

NSOrderedAscending if the value of decimalNumber is greater than the receiver; NSOrderedSame if they’re equal; and NSOrderedDescending if the value of decimalNumber is less than the receiver. NSOrderedAscending、もしdecimalNumberの値がレシーバより大きいならば;NSOrderedSame、もしそれらが等しいならば;そしてNSOrderedDescending、もしdecimalNumberの値がレシーバより少ないならば。