Search Results

3
votes

Where are the clever uses of strict evaluation?

No; there are some things you can do* with lazy evaluation (AKA normal-order reduction, or left-outermost reduction) that you can't do with strict evaluation, but not the other way around. …
6
votes

Is there a Haskell compiler or preprocessor that uses strict evaluation?

If you have a Haskell compiler that uses strict evaluation, it doesn't compile Haskell. Laziness is part of the Haskell spec! However, there are alternatives. …
8
votes

Short Circuiting sort

This: Will only need to find the smallest item in the list, because that is all that is used. ... should really say that the function only needs to do t …