Returns true if this Float value is Not-a-Number (NaN).
()
| 163 | * Returns true if this Float value is Not-a-Number (NaN). |
| 164 | */ |
| 165 | public boolean isNaN(){ |
| 166 | return value != value; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Returns true if the specified number is the special Not-a-Number (NaN) value. |
no outgoing calls