Volatile I / O Array in Haskell

ArrayRef

appears to be a package that offers scalable I / O arrays, however ....

ArrayRef

seems outdated (it won't even compile with the new GHC).

Does anyone know how to create a multidimensional array in GHC / Haskell? I may end up resorting to something related (like Sequence), but would like to stick with something that reads / modifies the time continuously if possible.

+3


source to share


1 answer


I believe they Data.Vector.Mutable

will change.

Edit: vector

- great package, but they seem to have changed the interface while I wasn't looking, so I can't give good advice on how to use it.



Edit 2: Catch Michael well, this will explain why it looked unfamiliar.

+7


source







All Articles