Tagged Questions

3
votes
1answer
106 views

Eager versus Lazy Haskell. Infinite lists possible in Eager languages?

Apparently it is possible to implement Haskell such that it evaluates eagerly without changing the semantics of the language at all. If that is true, how are infinite data structures handled? ...
3
votes
7answers
646 views

When is lazy evaluation not useful?

Delay execution is almost always a boon. But then there are cases when it’s a problem and you resort to “fetch” (in Nhibernate) to eager fetch it. Do you know practical situations when lazy ...
2
votes
6answers
357 views

eagerly evaluating boolean expressions in Python

Is there a way (using eval or whatever) to evaluate eagerly boolean expressions in python? Let's see this: >>> x = 3 >>> 5 < x < y False Yikes! That's very nice, because ...