summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Real.hs
diff options
context:
space:
mode:
authorDavid Feuer <david.feuer@gmail.com>2014-12-27 20:53:37 -0500
committerEdward Z. Yang <ezyang@cs.stanford.edu>2014-12-27 20:53:37 -0500
commitd6e7f5dc9db7e382ce34d649f85505176a451a04 (patch)
tree99870a52c10496c4c2bad0a7ccedb071ffb6bb2d /libraries/base/GHC/Real.hs
parent6b9e958c89f5f31bcb8520d657986a5983f5c34e (diff)
downloadhaskell-d6e7f5dc9db7e382ce34d649f85505176a451a04.tar.gz
Add export lists to some modules.
Summary: This makes it easier to see what is exported, and allows us to add non-exported top-level names. Reviewers: hvr, austin, ezyang Reviewed By: ezyang Subscribers: ezyang, carter, thomie Projects: #ghc Differential Revision: https://phabricator.haskell.org/D551 GHC Trac Issues: #9852
Diffstat (limited to 'libraries/base/GHC/Real.hs')
-rw-r--r--libraries/base/GHC/Real.hs14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/base/GHC/Real.hs b/libraries/base/GHC/Real.hs
index c3013256c1..656a22de74 100644
--- a/libraries/base/GHC/Real.hs
+++ b/libraries/base/GHC/Real.hs
@@ -18,7 +18,19 @@
--
-----------------------------------------------------------------------------
-module GHC.Real where
+module GHC.Real
+ (
+ Fractional(..), Integral(..), Ratio(..), Real(..), RealFrac(..),
+
+ Rational,
+
+ (%), (^), (^%^), (^^), (^^%^^), denominator, divZeroError, even,
+ fromIntegral, gcd, gcdInt', gcdWord', infinity, integralEnumFrom,
+ integralEnumFromThen, integralEnumFromThenTo, integralEnumFromTo, lcm,
+ notANumber, numerator, numericEnumFrom, numericEnumFromThen,
+ numericEnumFromThenTo, numericEnumFromTo, odd, overflowError, ratioPrec,
+ ratioPrec1, ratioZeroDenominatorError, realToFrac, reduce, showSigned
+ ) where
import GHC.Base
import GHC.Num