Instance Method
インスタンスメソッド
isEqual(to:)
Returns a Boolean value that indicates whether the number object’s value and a given number are equal.
あるブール値を返します、それは数オブジェクトのもつ値とある与えられた数が等しいかどうかを指し示します。
Parameters
パラメータ
aNumber
The number to compare to the number object’s value.
この数オブジェクトのもつ値と比較することになる数。
Return Value
戻り値
true
if the number object’s value and aNumber
are equal, otherwise false
.
true
、もし数オブジェクトのもつ値とaNumber
が等しいならば、そうでなければfalse
。
Discussion
議論
Two NSNumber
objects are considered equal if they have the same id values or if they have equivalent values (as determined by the compare(_:)
method).
2つのNSNumber
オブジェクトは等しいとみなされます、それらが同じid値を持つならばまたはそれらが等しい値を持つならば(compare(_:)
によって解決されるとおりに)。
This method is more efficient than compare(_:)
if you know the two objects are numbers.
このメソッドは、compare(_:)
より効率的です、もしあなたが2つのオブジェクトが数であることを知っているならば。
See Also
参照
Comparing NSNumber Objects
NSNumberオブジェクトの比較
func compare(NSNumber) -> ComparisonResult
Returns an NSComparisonResult
value that indicates whether the number object’s value is greater than, equal to, or less than a given number.
あるNSComparisonResult
値を返します、それは数オブジェクトのもつ値がある与えられた数より大きい、等しい、またはより小さいかを指し示します。