summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorReiner Pope <reiner.pope@gmail.com>2012-01-07 10:57:30 +1100
committerReiner Pope <reiner.pope@gmail.com>2012-01-07 10:57:30 +1100
commitf71aa6c3202948c3ce1252871edf4554a1b47db4 (patch)
treea0cc5a99ec4c6d207cc4dbca6342cc7a7cda31e2 /lib
parent2b009db14f1d3d4985f0274b71ed9ad86e9e2b7b (diff)
Expose unchecked indexing functions
Diffstat (limited to 'lib')
-rw-r--r--lib/Data/Packed/Development.hs3
-rw-r--r--lib/Data/Packed/Internal/Matrix.hs2
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/Data/Packed/Development.hs b/lib/Data/Packed/Development.hs
index 6098e03..9b8dacf 100644
--- a/lib/Data/Packed/Development.hs
+++ b/lib/Data/Packed/Development.hs
@@ -23,7 +23,8 @@ module Data.Packed.Development (
23 MatrixOrder(..), orderOf, cmat, fmat, 23 MatrixOrder(..), orderOf, cmat, fmat,
24 unsafeFromForeignPtr, 24 unsafeFromForeignPtr,
25 unsafeToForeignPtr, 25 unsafeToForeignPtr,
26 check, (//) 26 check, (//),
27 at', atM'
27) where 28) where
28 29
29import Data.Packed.Internal 30import Data.Packed.Internal
diff --git a/lib/Data/Packed/Internal/Matrix.hs b/lib/Data/Packed/Internal/Matrix.hs
index 5d05e50..d4b0bc1 100644
--- a/lib/Data/Packed/Internal/Matrix.hs
+++ b/lib/Data/Packed/Internal/Matrix.hs
@@ -29,7 +29,7 @@ module Data.Packed.Internal.Matrix(
29 matrixFromVector, 29 matrixFromVector,
30 subMatrix, 30 subMatrix,
31 liftMatrix, liftMatrix2, 31 liftMatrix, liftMatrix2,
32 (@@>), 32 (@@>), atM',
33 saveMatrix, 33 saveMatrix,
34 singleton, 34 singleton,
35 size, shSize, conformVs, conformMs, conformVTo, conformMTo 35 size, shSize, conformVs, conformMs, conformVTo, conformMTo