summaryrefslogtreecommitdiff
path: root/libraries/base/Numeric.hs
diff options
context:
space:
mode:
authorsimonmar <unknown>2001-08-02 13:30:36 +0000
committersimonmar <unknown>2001-08-02 13:30:36 +0000
commit45c5a172b23aee49ed1864192d1d0d6e36e98aab (patch)
treeb4f70c023fb418dcf7f984ee7f514827c5d2a9ac /libraries/base/Numeric.hs
parentd65df600fea3d7a1a0b079f3de94e77e48ce893a (diff)
downloadhaskell-45c5a172b23aee49ed1864192d1d0d6e36e98aab.tar.gz
[project @ 2001-08-02 13:30:36 by simonmar]
Don't export non-H98 functions
Diffstat (limited to 'libraries/base/Numeric.hs')
-rw-r--r--libraries/base/Numeric.hs8
1 files changed, 6 insertions, 2 deletions
diff --git a/libraries/base/Numeric.hs b/libraries/base/Numeric.hs
index 4a4ecf4577..2db3d368a0 100644
--- a/libraries/base/Numeric.hs
+++ b/libraries/base/Numeric.hs
@@ -8,7 +8,7 @@
-- Stability : experimental
-- Portability : portable
--
--- $Id: Numeric.hs,v 1.1 2001/07/04 12:07:27 simonmar Exp $
+-- $Id: Numeric.hs,v 1.2 2001/08/02 13:30:36 simonmar Exp $
--
-- Odds and ends, mostly functions for reading and showing
-- RealFloat-like kind of values.
@@ -28,10 +28,12 @@ module Numeric (
readOct, -- :: (Integral a) => ReadS a
readHex, -- :: (Integral a) => ReadS a
+{- -- left out for now, as we can only export the H98 interface
showHex, -- :: Integral a => a -> ShowS
showOct, -- :: Integral a => a -> ShowS
showBin, -- :: Integral a => a -> ShowS
-
+-}
+
showEFloat, -- :: (RealFloat a) => Maybe Int -> a -> ShowS
showFFloat, -- :: (RealFloat a) => Maybe Int -> a -> ShowS
showGFloat, -- :: (RealFloat a) => Maybe Int -> a -> ShowS
@@ -42,12 +44,14 @@ module Numeric (
floatToDigits, -- :: (RealFloat a) => Integer -> a -> ([Int], Int)
lexDigits, -- :: ReadS String
+{- -- left out for now, as we can only export the H98 interface
-- general purpose number->string converter.
showIntAtBase, -- :: Integral a
-- => a -- base
-- -> (a -> Char) -- digit to char
-- -> a -- number to show.
-- -> ShowS
+-}
) where
import Prelude -- For dependencies