Tagged Questions
7
votes
2answers
516 views
How to create unboxed mutable array instance
let's say I've got the following type :
data MyType = Constructor0 | Constructor1 | Constructor2
deriving (Eq,Show,Enum)
Is there a way to create one of such instances :
MArray ...
1
vote
1answer
332 views
“Could not deduce (MArray (STUArray s) Int (ST s)) from context ()” when applying runST
I'm in the process of learning haskell and came across this problem:
Using Glasgow Haskell Compiler, Version 6.10.4, for Haskell 98, stage 2 booted by GHC version 6.10.1
Common beginning of the file
...