Skip to content

Instantly share code, notes, and snippets.

@dcsobral
Created September 2, 2012 20:32
Show Gist options
  • Save dcsobral/3604301 to your computer and use it in GitHub Desktop.
Save dcsobral/3604301 to your computer and use it in GitHub Desktop.
-0.0
scala> -0.0 == 0.0
res0: Boolean = true
scala> -0.0 < 0.0
res1: Boolean = false
scala> -0.0 > 0.0
res2: Boolean = false
scala> -0.0 compareTo 0.0
res4: Int = -1
scala> 0.0 compareTo -0.0
res5: Int = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment