[project @ 2002-05-28 11:43:59 by simonmar]
[ghc-base.git] / Data / Generics.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Data.Generics
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  non-portable
10 --
11 -- Data types for generic definitions.
12 --
13 -----------------------------------------------------------------------------
14
15 module Data.Generics ( 
16         (:*:)(..), (:+:)(..), Unit(..)
17  ) where
18
19 import Prelude
20
21 #ifdef __GLASGOW_HASKELL__
22 import GHC.Base ( (:*:)(..), (:+:)(..), Unit(..) )
23 #endif