[project @ 2002-10-03 12:57:42 by panne]
authorpanne <unknown>
Thu, 3 Oct 2002 12:57:42 +0000 (12:57 +0000)
committerpanne <unknown>
Thu, 3 Oct 2002 12:57:42 +0000 (12:57 +0000)
Warning police #5: Nuked duplicate exports, simplifying (i.e. nuking
:-) the export list on the way. The deep and arcane reasons for the
strange #ifdef-ery in this module are not clear to me, so I hope no
damage is done by this commit. :-}

Data/Tuple.hs

index 6c096bb..16b23b4 100644 (file)
 --
 -----------------------------------------------------------------------------
 
-module Data.Tuple (
-         module Data.Tuple
-         -- tuples 1..37
-       , fst           -- :: (a,b) -> a
-       , snd           -- :: (a,b) -> a
-       , curry         -- :: ((a, b) -> c) -> a -> b -> c
-       , uncurry       -- :: (a -> b -> c) -> ((a, b) -> c)
-  ) where
+module Data.Tuple where
 
 #ifdef __GLASGOW_HASKELL__
 import GHC.Base