Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
refs/heads/compose-dev
/
.
/
idea
/
resources-en
/
inspectionDescriptions
/
ConvertNaNEquality.html
blob: a43e16f550f1a945605215db9cc740158ac50ac1 [
file
] [
log
] [
blame
] [
edit
]
<html>
<body>
This inspection reports an equality check with
<b>
Double.NaN
</b>
which can be replaced with
<b>
a.isNaN()
</b>
.
For every floating point value
<b>
a
</b>
,
<b>
a == NaN
</b>
will always result in
<b>
false
</b>
.
</body>
</html>