cool, will post it in IntelliJ channel
# announcements
r
cool, will post it in IntelliJ channel
d
Was just looking at the implementation of
Double.isNaN
, it's quite funny in the context:
Copy code
java
    public static boolean isNaN(double v) {
        return (v != v);
    }