summaryrefslogtreecommitdiff
path: root/lib/Data/Packed/Development.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Data/Packed/Development.hs')
-rw-r--r--lib/Data/Packed/Development.hs27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/Data/Packed/Development.hs b/lib/Data/Packed/Development.hs
new file mode 100644
index 0000000..cbb2f81
--- /dev/null
+++ b/lib/Data/Packed/Development.hs
@@ -0,0 +1,27 @@
1
2-----------------------------------------------------------------------------
3-- |
4-- Module : Data.Packed.Development
5-- Copyright : (c) Alberto Ruiz 2009
6-- License : GPL
7--
8-- Maintainer : Alberto Ruiz <aruiz@um.es>
9-- Stability : provisional
10-- Portability : portable
11--
12-- The implementation of the 'Vector' and 'Matrix' types is not exposed,
13-- but the library can be easily extended with additional foreign functions
14-- using the tools in this module. Illustrative usage examples can be found
15-- in the @examples\/devel@ folder included in the package.
16--
17-----------------------------------------------------------------------------
18
19module Data.Packed.Development (
20 createVector, createMatrix,
21 Adapt,
22 vec, mat,
23 app1, app2, app3, app4,
24 MatrixOrder(..), orderOf, cmat, fmat,
25) where
26
27import Data.Packed.Internal \ No newline at end of file