X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=GHC%2FClasses.hs;h=2934d1d98a1a109053f453a17b444124661f0bdc;hb=b93d6da530a539bc3aa68816d1998e8826c40345;hp=30f706a61056f3e0b7040499eec74b244454ef39;hpb=b40cf1d33ed4f7da5b4edf0eff8251d30e32f137;p=ghc-base.git diff --git a/GHC/Classes.hs b/GHC/Classes.hs index 30f706a..2934d1d 100644 --- a/GHC/Classes.hs +++ b/GHC/Classes.hs @@ -19,7 +19,6 @@ module GHC.Classes where -import GHC.Bool import GHC.Integer -- GHC.Magic is used in some derived instances import GHC.Magic () @@ -101,6 +100,12 @@ instance Eq Integer where (==) = eqInteger (/=) = neqInteger +instance Eq Float where + (F# x) == (F# y) = x `eqFloat#` y + +instance Eq Double where + (D# x) == (D# y) = x ==## y + -- | The 'Ord' class is used for totally ordered datatypes. -- -- Instances of 'Ord' can be derived for any user-defined @@ -196,6 +201,28 @@ instance Ord Integer where (>=) = geInteger compare = compareInteger +instance Ord Float where + (F# x) `compare` (F# y) + = if x `ltFloat#` y then LT + else if x `eqFloat#` y then EQ + else GT + + (F# x) < (F# y) = x `ltFloat#` y + (F# x) <= (F# y) = x `leFloat#` y + (F# x) >= (F# y) = x `geFloat#` y + (F# x) > (F# y) = x `gtFloat#` y + +instance Ord Double where + (D# x) `compare` (D# y) + = if x <## y then LT + else if x ==## y then EQ + else GT + + (D# x) < (D# y) = x <## y + (D# x) <= (D# y) = x <=## y + (D# x) >= (D# y) = x >=## y + (D# x) > (D# y) = x >## y + -- OK, so they're technically not part of a class...: -- Boolean functions