From: panne Date: Thu, 3 Oct 2002 12:57:42 +0000 (+0000) Subject: [project @ 2002-10-03 12:57:42 by panne] X-Git-Tag: nhc98-1-18-release~828 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=dbd01bc9d527da582182fc0872b7ba505d8f8a7e;p=ghc-base.git [project @ 2002-10-03 12:57:42 by panne] 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. :-} --- diff --git a/Data/Tuple.hs b/Data/Tuple.hs index 6c096bb..16b23b4 100644 --- a/Data/Tuple.hs +++ b/Data/Tuple.hs @@ -13,14 +13,7 @@ -- ----------------------------------------------------------------------------- -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