On Mon, May 18, 2009 at 6:34 PM, Vasili I. Galchin <[email protected]> wrote: > Hello, > > Do newSTArray, readSTArray, writeSTArray, etc. belong to an old > deprecated Hugs library/module? If so, what is the Haskell 98 replacement?
I don't know about Haskell 98, but I think the modern solution is to use newArray, readArray, and writeArray from Data.Array.MArray. There are more details at <http://haskell.org/haskellwiki/Arrays>. -- Dave Menendez <[email protected]> <http://www.eyrie.org/~zednenem/> _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
