----------------------------------------------------------------------------- -- | -- Module : Data.Matrix.Dense.ST -- Copyright : Copyright (c) , Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- -- Mutable dense matrices in the ST monad. -- module Data.Matrix.Dense.ST ( -- * The @STMatrix@ data type STMatrix, runSTMatrix, -- * Overloaded mutable dense matrix interface module Data.Matrix.Dense.Class, ) where import Data.Matrix.Dense.Class import Data.Matrix.Dense.STBase