Tagged Questions
3
votes
3answers
88 views
Choosing a syntax for list generating expressions
C# has generator functions which have syntax like:
IEnumerable<int> GetNats(int max)
{
for (int i=0; i < max; ++i)
yield return i;
}
A feature I am interested in for my ...
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 ...