12
votes
10answers
1k views
What can you use Python generator functions for?
I'm starting to learn Python and I've come across generator functions, those that have a yield statement in them. I want to know what types of problems that these functions are really good at …
6
votes
6answers
400 views
Distinction between iterator and enumerator
An interview question for a .NET 3.5 job is "What is the difference between an iterator and an enumerator"?
This is a core distinction to make, what with LINQ, etc.
Anyway, what is the difference? I …
2
votes
2answers
135 views
Can a Python function take a generator and return generators to subsets of its generated output?
Let's say I have a generator function like this:
import random
def big_gen():
i = 0
group = 'a'
while group != 'd':
i += 1
yield (group, i)
if random.random() < 0.20:
group …
2
votes
5answers
149 views
Can I be warned when I used a generator function by accident
I was working with generator functions and private functions of a class. I am wondering
Why when yielding (which in my one case was by accident) in __someFunc that this function just appears not to …
1
vote
3answers
57 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 …
1
vote
2answers
160 views
python generator function getting executed twice?
Hello people,
I'm using a python generator function to provide me with a list of images in the current directory. However I see the function is giving out the entire list twice instead of one time …
0
votes
2answers
55 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# …
0
votes
1answer
36 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 …
