is-always-false highlighting

Float.isNaN :

static public boolean isNaN(float v) {
return (v != v);
}

v != v is true for Float.NaN

0
1 comment
Avatar
Permanently deleted user

Same applies to double and Double.NaN respectively.

0

Please sign in to leave a comment.