----------------------------------------------------------------------------- -- | -- Module : Data.Matrix.Dense.IO -- Copyright : Copyright (c) 2008, Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- -- Mutable dense matrices in the IO monad. -- module Data.Matrix.Dense.IO ( -- * The IOMatrix data type IOMatrix, withIOMatrix, matrixViewArray, matrixViewArrayWithLda, -- * Overloaded mutable dense matrix interface module Data.Matrix.Dense.Class, ) where import Data.Matrix.Dense.IOBase import Data.Matrix.Dense.Class