diff options
author | Reiner Pope <reiner.pope@gmail.com> | 2012-01-07 10:57:30 +1100 |
---|---|---|
committer | Reiner Pope <reiner.pope@gmail.com> | 2012-01-07 10:57:30 +1100 |
commit | f71aa6c3202948c3ce1252871edf4554a1b47db4 (patch) | |
tree | a0cc5a99ec4c6d207cc4dbca6342cc7a7cda31e2 | |
parent | 2b009db14f1d3d4985f0274b71ed9ad86e9e2b7b (diff) |
Expose unchecked indexing functions
-rw-r--r-- | lib/Data/Packed/Development.hs | 3 | ||||
-rw-r--r-- | lib/Data/Packed/Internal/Matrix.hs | 2 |
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 | ||
29 | import Data.Packed.Internal | 30 | import 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 |