summaryrefslogtreecommitdiff
path: root/libraries/base/Numeric.hs
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-01-02 14:40:11 +0000
committersimonmar <unknown>2002-01-02 14:40:11 +0000
commit56d4524814b8b674941462c8d9b8f8d12ea5f4d2 (patch)
tree3ca345e7b32b03f2964d2f213fb1988d5eb43161 /libraries/base/Numeric.hs
parentceb68b9118fa883e88abfaa532fc78f6640cf17f (diff)
downloadhaskell-56d4524814b8b674941462c8d9b8f8d12ea5f4d2.tar.gz
[project @ 2002-01-02 14:40:09 by simonmar]
Make this compile again, and update with latest changes from hslibs/lang.
Diffstat (limited to 'libraries/base/Numeric.hs')
-rw-r--r--libraries/base/Numeric.hs6
1 files changed, 1 insertions, 5 deletions
diff --git a/libraries/base/Numeric.hs b/libraries/base/Numeric.hs
index 2db3d368a0..cef75f45fc 100644
--- a/libraries/base/Numeric.hs
+++ b/libraries/base/Numeric.hs
@@ -8,7 +8,7 @@
-- Stability : experimental
-- Portability : portable
--
--- $Id: Numeric.hs,v 1.2 2001/08/02 13:30:36 simonmar Exp $
+-- $Id: Numeric.hs,v 1.3 2002/01/02 14:40:09 simonmar Exp $
--
-- Odds and ends, mostly functions for reading and showing
-- RealFloat-like kind of values.
@@ -28,11 +28,9 @@ 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
@@ -44,14 +42,12 @@ 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