2
votes
Why is lazy evaluation useful?
I find lazy evaluation useful for a number of things.
First, all existing lazy languages are pure, because it is very hard to reason about side effects in a lazy language.
Pure lan …
3
votes
How can I simplify a basic arithmetic expression?
Well, you have the right general model. You just need more rules and to recursively apply the simplification process.
simplify :: Expr -> Expr
simplify (Mult (Const 0) x) = Cons …
4
votes
Type classes in Haskell data types
You need to decide if you want an existential or universal quantification on that type. Universal quantification, ala:
data (Num a, Ord a) => Point2 a = Point2 a a
…
1
vote
Where can I learn how best to represent procedural code in a language-independent manner ready for transformations?
Haskell has decent LLVM bindings thanks to Bryan O'Sullivan and Lennart Augustsson, you might want to look there. However, that may be a bit lower level than you are looking for. That said, it has …
3
votes
Hidden features of Haskell
Equational Reasoning
Haskell, being purely functional allows you to read an equal sign as a real equal sign (in the absence of non-overlapping patterns).
This allow …
1
vote
Hidden features of Haskell
Free Theorems
Phil Wadler introduced us to the notion of a free theorem and we' …
3
votes
Hidden features of Haskell
Laziness
Ubiquitous laziness means you can do things like define
fibs = 1 : 1 : zipWith (+) fibs (tail fibs)
But it also provides us with …
1
vote
Haskell: generic IORef, MVar?
I've rewritten a cheesy little MonadRef class on a few separate occasions for my own personal use and someone probably has one on Hackage, but I can't find one that is unencumbered wit …
2
votes
Haskell Build Automation
I might be old fashioned, but I just set up my .cabal file and darcs repository and add a Makefile that with the dependencies of its default action tries to build my packa …
1
vote
Hash tables using VLists
Hrmm there seem to be a number of issues with the data structures proposed by the paper in question.
Off the cuff, the naive vlists mentioned first seem to need unique references in order …
9
votes
Are list comprehensions a major part of Haskell
Haskell is defined by having a small set of core language functionality surrounded by a rich set of syntactic choices. List comprehensions are one choice, but they provide nothing that the monad su …
3
votes
string interpolation in haskell
While the other posters here mention many of the 'right' ways to do string interpolation, there is a fancier way using quasiquotation and the …
2
votes
N-queens in Haskell without list traversal
In general you are probably going to be stuck paying the O(log n) complexity tax for a functional non-destructive implementation or you'll have to relent and use an (IO|ST|STM)UA …
3
votes
invisible identation error in Haskell caused load fail in ghci
Your problem has to do with the expansion of tabs. Haskell assumes a tab is worth 8 spaces. Your editor likely has a different assumption. Try searching and replacing all tabs with 8 space in your …
0
votes
Comparing 3 output lists in haskell
The easiest way is to respecify your problem slightly
Rather than deal with three lists (note the removal of the superfluous n argument):
hexag = [ n*(2*n-1) | n <- [4075 …
