diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-06-14 16:50:31 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-06-14 16:50:31 +0000 |
commit | f71a0a7e65f5fcd4e4e05a3cf114fc7d76419091 (patch) | |
tree | ab0d765d1b2d2e18d85e8f8f4e7944890acc3f5b /lib/Data | |
parent | 2e0231b0b480fd399008697288fd6746efc17c08 (diff) |
Internal.hs
Diffstat (limited to 'lib/Data')
-rw-r--r-- | lib/Data/Packed/Internal.hs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/Data/Packed/Internal.hs b/lib/Data/Packed/Internal.hs new file mode 100644 index 0000000..a7fca1a --- /dev/null +++ b/lib/Data/Packed/Internal.hs | |||
@@ -0,0 +1,23 @@ | |||
1 | ----------------------------------------------------------------------------- | ||
2 | -- | | ||
3 | -- Module : Data.Packed.Internal | ||
4 | -- Copyright : (c) Alberto Ruiz 2007 | ||
5 | -- License : GPL-style | ||
6 | -- | ||
7 | -- Maintainer : Alberto Ruiz <aruiz@um.es> | ||
8 | -- Stability : provisional | ||
9 | -- Portability : portable | ||
10 | -- | ||
11 | -- Reexports all internal modules | ||
12 | -- | ||
13 | ----------------------------------------------------------------------------- | ||
14 | |||
15 | module Data.Packed.Internal ( | ||
16 | module Data.Packed.Internal.Common, | ||
17 | module Data.Packed.Internal.Vector, | ||
18 | module Data.Packed.Internal.Matrix | ||
19 | ) where | ||
20 | |||
21 | import Data.Packed.Internal.Common | ||
22 | import Data.Packed.Internal.Vector | ||
23 | import Data.Packed.Internal.Matrix | ||