Tagged Questions
11
votes
1answer
488 views
Python Generator Function Names — is a prefix helpful?
Most functions are easy to name. Generally, a function name is based on what it does or the type of result it produces.
In the case of a generator function, however, the result could be a iterable ...
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
2answers
91 views
Parallel Map (Generator) Operator
I am interested in defining a parallel map operator for my language. It transforms a list into a new list given an expression. It would have a syntax similar to a generator. Unlike generators in C# ...