Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tamar Christina
GHC
Commits
1f9e4a30
Commit
1f9e4a30
authored
13 years ago
by
Ian Lynagh
Browse files
Options
Downloads
Patches
Plain Diff
Eq and Ord instances are now in the integer package, not base
parent
ec1c486a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/integer-gmp/GHC/Integer.lhs
+12
-0
12 additions, 0 deletions
libraries/integer-gmp/GHC/Integer.lhs
with
12 additions
and
0 deletions
libraries/integer-gmp/GHC/Integer.lhs
+
12
−
0
View file @
1f9e4a30
...
...
@@ -85,6 +85,7 @@ import GHC.IntWord64 (
)
#endif
import GHC.Classes
import GHC.Ordering
import GHC.Types
...
...
@@ -332,6 +333,10 @@ neqInteger (S# i) (J# s d) = cmpIntegerInt# s d i /=# 0#
neqInteger (J# s d) (S# i) = cmpIntegerInt# s d i /=# 0#
neqInteger (J# s1 d1) (J# s2 d2) = (cmpInteger# s1 d1 s2 d2) /=# 0#
instance Eq Integer where
(==) = eqInteger
(/=) = neqInteger
------------------------------------------------------------------------
leInteger :: Integer -> Integer -> Bool
...
...
@@ -378,6 +383,13 @@ compareInteger (J# s1 d1) (J# s2 d2)
if res# <# 0# then LT else
if res# ># 0# then GT else EQ
}
instance Ord Integer where
(<=) = leInteger
(>) = gtInteger
(<) = ltInteger
(>=) = geInteger
compare = compareInteger
\end{code}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment