Tagged Questions
The stuarray tag has no wiki summary.
7
votes
2answers
506 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 ...
3
votes
2answers
268 views
STUArray with polymorphic type
I want to implement an algorithm using the ST monad and STUArrays, and I want it to be able to work with both Float and Double data.
I'll demonstrate on a simpler example problem: calculating a ...
1
vote
1answer
325 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
...