This message was deleted.
# announcements
s
This message was deleted.
🙃 1
Moreover in jdk Double.isNan is:
Copy code
public static boolean isNaN(double v) {
        return (v != v);
    }
e
It is not Java-specific. This behavior is specified by IEEE 754 standard.
l
ofc.. I should have known this..
thanks for the reply