How can I determine if a Cocoa NSNumber represents NaN (not a number)?
This emerges, for example, when I parse a string that has an invalid (non-numeric) contents.
|
|
|
|
|
|
|
So, I found out that the class property |
||
|
|
|
|
There isn't really such an object for NSNumber since if it's not a number, then, well, it's not an NSNumber. It's more usual to use a nil object to represent this. |
||
|
|
|
|
As Mike Abdullah says, the natural way to represent a NaN in Cocoa is with |
||
|
|