
5 Aug
2006
5 Aug
'06
11:03 p.m.
bulat.ziganshin:
Hello Chris,
Saturday, August 5, 2006, 3:47:19 AM, you wrote:
in Haskell before blitting the data (whilst also retaining some semblance of functional programming...)
the best way to optimize Haskell program (with current technologies) is to rewrite it in strict & imperative manner:
Strict, very often, since we get unboxed types out of ghc. Imperative, not always (and will be less so with Data.ByteString -- since we don't need to drop into IO to get peek/poke). -- Don