You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2018/03/06 23:26:13 UTC

[jira] [Closed] (GROOVY-4018) Make the Groovy truth value of NaN be false

     [ https://issues.apache.org/jira/browse/GROOVY-4018?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul King closed GROOVY-4018.
-----------------------------

> Make the Groovy truth value of NaN be false
> -------------------------------------------
>
>                 Key: GROOVY-4018
>                 URL: https://issues.apache.org/jira/browse/GROOVY-4018
>             Project: Groovy
>          Issue Type: Improvement
>          Components: groovy-runtime
>            Reporter: Steve Tekell
>            Assignee: John Wagenleitner
>            Priority: Major
>              Labels: breaking
>             Fix For: 2.6.0-alpha-2
>
>
> Similar to null and empty-string, have Groovy evaluate NaN as false rather than true.
> {noformat}
> def result = a?.b?.calcX(...)
> if (result) { 
>   // now I have a valid non-null number
> }
> {noformat}
> This is how JavaScript treats NaN and like other Groovy design choices, it just makes sense.
> Discussed in this thread
> http://old.nabble.com/Shouldn't-the-Groovy-truth-value-of-NaN-be-false--tt27348256.html
> That is, if NaN was false the following should work:
> assert !(Double.NaN)
> assert !((Double.NaN as Boolean) == true)
> assert ((Double.NaN as Boolean) == false)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)