Tagged Questions

0
votes
3answers
46 views

What are some useful or interesting infinite generators?

What are some clever uses for infinite generators? I've seen lots of seemingly trivial examples like "list all even numbers", but I assume there must be others that have more applicability to ...
0
votes
1answer
48 views

What should happen when a generator function is assigned?

If I have a programming language with first class functions. What should the semantics be when a generator function is shared? For example: var f = function() { foreach (i in 0..42) yield ...