summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Base.lhs
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-05-10 16:18:29 +0000
committersimonmar <unknown>2002-05-10 16:18:29 +0000
commitbcb5a521bf2a3712c5db4b88e91b308646f1c3c3 (patch)
tree520c5feaa59ab6b5f0db6f065a528ea8786e92e1 /libraries/base/GHC/Base.lhs
parent75f449293b0e9744b4a80a71d5d89392571ba050 (diff)
downloadhaskell-bcb5a521bf2a3712c5db4b88e91b308646f1c3c3.tar.gz
[project @ 2002-05-10 16:18:28 by simonmar]
More documentation
Diffstat (limited to 'libraries/base/GHC/Base.lhs')
-rw-r--r--libraries/base/GHC/Base.lhs4
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/base/GHC/Base.lhs b/libraries/base/GHC/Base.lhs
index ffc3b065a7..45138d2c19 100644
--- a/libraries/base/GHC/Base.lhs
+++ b/libraries/base/GHC/Base.lhs
@@ -509,6 +509,10 @@ eqString cs1 cs2 = False
\begin{code}
data Int = I# Int#
+-- ^A fixed-precision integer type with at least the range @[-2^29
+-- .. 2^29-1]@. The exact range for a given implementation can be
+-- determined by using 'minBound' and 'maxBound' from the 'Bounded'
+-- class.
zeroInt, oneInt, twoInt, maxInt, minInt :: Int
zeroInt = I# 0#