@ -1,8 +1,8 @@
module Matrix where
import Data.List (intercalate)
data Mat a = Mat [[a]]
type Pos = (Int, Int)
newtype Mat a = Mat [[a]]
instance Functor Mat where
fmap f (Mat m) = Mat ((map . map) f m)
The note is not visible to the blocked user.