I've read lots on weak head normal form and seq. But I'm still have trouble imagining the logic behind Haskell's order of evaluation
A common example demonstrating when and how to use but I still don't understand how the common example
foldl (+) 0 [1..5000000]
can result in a stack overflow. While another fold definition using seq doesn't
foldl' _ a [] = a
foldl' f a (x:xs) = let a' = f a x in a' `seq` foldl' f a' xs
foldl' (+) 0 [0..5000000]
From explanations of seq that I've read, authors are very careful to make the following clear:
- The first argument of
seqis not guaranteed to be evaluated before the second argument - The first argument of
seqwill only be evaluated to weak head normal form - The evaluation of the first argument of
seqwill only happen when the second is evaluated to WHNF
So, if the above is correct (is it?) then why does foldl' not overflow like foldl?
When we reduce one step, shouldn't it looks like this, right?
foldl' (+) 0 (1:xs) = let a' = (+) 0 1 in a' `seq` foldl' (+) a' xs
In the above, the second argument of seq is not in WHNF since there is a function application which needs to be done. Are we guaranteed to evaluate the first argument of seq here before we reach the WHNF of the second argument?