summaryrefslogtreecommitdiff
path: root/lib/Data
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Data')
-rw-r--r--lib/Data/Packed.hs3
-rw-r--r--lib/Data/Packed/Development.hs1
-rw-r--r--lib/Data/Packed/Foreign.hs1
-rw-r--r--lib/Data/Packed/Matrix.hs1
-rw-r--r--lib/Data/Packed/ST.hs1
-rw-r--r--lib/Data/Packed/Vector.hs1
6 files changed, 7 insertions, 1 deletions
diff --git a/lib/Data/Packed.hs b/lib/Data/Packed.hs
index b8bec8a..957aab8 100644
--- a/lib/Data/Packed.hs
+++ b/lib/Data/Packed.hs
@@ -12,6 +12,7 @@ Types for dense 'Vector' and 'Matrix' of 'Storable' elements.
12 12
13-} 13-}
14----------------------------------------------------------------------------- 14-----------------------------------------------------------------------------
15{-# OPTIONS_HADDOCK hide #-}
15 16
16module Data.Packed ( 17module Data.Packed (
17 module Data.Packed.Vector, 18 module Data.Packed.Vector,
@@ -25,4 +26,4 @@ import Data.Packed.Vector
25import Data.Packed.Matrix 26import Data.Packed.Matrix
26--import Data.Packed.Random 27--import Data.Packed.Random
27--import Data.Complex 28--import Data.Complex
28--import Numeric.Conversion \ No newline at end of file 29--import Numeric.Conversion
diff --git a/lib/Data/Packed/Development.hs b/lib/Data/Packed/Development.hs
index e792783..471e560 100644
--- a/lib/Data/Packed/Development.hs
+++ b/lib/Data/Packed/Development.hs
@@ -14,6 +14,7 @@
14-- in the @examples\/devel@ folder included in the package. 14-- in the @examples\/devel@ folder included in the package.
15-- 15--
16----------------------------------------------------------------------------- 16-----------------------------------------------------------------------------
17{-# OPTIONS_HADDOCK hide #-}
17 18
18module Data.Packed.Development ( 19module Data.Packed.Development (
19 createVector, createMatrix, 20 createVector, createMatrix,
diff --git a/lib/Data/Packed/Foreign.hs b/lib/Data/Packed/Foreign.hs
index efa51ca..1ec3694 100644
--- a/lib/Data/Packed/Foreign.hs
+++ b/lib/Data/Packed/Foreign.hs
@@ -6,6 +6,7 @@
6-- @ glUniformMatrix4fv 0 1 (fromIntegral gl_TRUE) \`appMatrix\` perspective 0.01 100 (pi\/2) (4\/3) 6-- @ glUniformMatrix4fv 0 1 (fromIntegral gl_TRUE) \`appMatrix\` perspective 0.01 100 (pi\/2) (4\/3)
7-- @ 7-- @
8-- 8--
9{-# OPTIONS_HADDOCK hide #-}
9module Data.Packed.Foreign 10module Data.Packed.Foreign
10 ( app 11 ( app
11 , appVector, appVectorLen 12 , appVector, appVectorLen
diff --git a/lib/Data/Packed/Matrix.hs b/lib/Data/Packed/Matrix.hs
index 2ab1541..5365c1c 100644
--- a/lib/Data/Packed/Matrix.hs
+++ b/lib/Data/Packed/Matrix.hs
@@ -18,6 +18,7 @@
18-- This module provides basic functions for manipulation of structure. 18-- This module provides basic functions for manipulation of structure.
19 19
20----------------------------------------------------------------------------- 20-----------------------------------------------------------------------------
21{-# OPTIONS_HADDOCK hide #-}
21 22
22module Data.Packed.Matrix ( 23module Data.Packed.Matrix (
23 Matrix, 24 Matrix,
diff --git a/lib/Data/Packed/ST.hs b/lib/Data/Packed/ST.hs
index c1e7aef..1cef296 100644
--- a/lib/Data/Packed/ST.hs
+++ b/lib/Data/Packed/ST.hs
@@ -16,6 +16,7 @@
16-- See examples/inplace.hs in the distribution. 16-- See examples/inplace.hs in the distribution.
17-- 17--
18----------------------------------------------------------------------------- 18-----------------------------------------------------------------------------
19{-# OPTIONS_HADDOCK hide #-}
19 20
20module Data.Packed.ST ( 21module Data.Packed.ST (
21 -- * Mutable Vectors 22 -- * Mutable Vectors
diff --git a/lib/Data/Packed/Vector.hs b/lib/Data/Packed/Vector.hs
index f12031f..b5a4318 100644
--- a/lib/Data/Packed/Vector.hs
+++ b/lib/Data/Packed/Vector.hs
@@ -14,6 +14,7 @@
14-- This module provides basic functions for manipulation of structure. 14-- This module provides basic functions for manipulation of structure.
15-- 15--
16----------------------------------------------------------------------------- 16-----------------------------------------------------------------------------
17{-# OPTIONS_HADDOCK hide #-}
17 18
18module Data.Packed.Vector ( 19module Data.Packed.Vector (
19 Vector, 20 Vector,