Is there a simple way of testing if the generator has no items, like peek, hasNext, isEmpty, something along those lines?
|
|
|||||||||
|
|
|
The simple answer to your question: no, there is no simple way. There are a whole lot of work-arounds. There really shouldn't be a simple way, because of what generators are: a way to output a sequence of values without holding the sequence in memory. So there's no backward traversal. You could write a has_next function or maybe even slap it on to a generator as a method with a fancy decorator if you wanted to. |
||||||
|
|
|
At the end of generator another thing you can do is:
|
||||
|
|
|
Sorry for the obvious approach, but the best way would be to do:
Now you have detected that the generator is empty while you are using it. Of course, item will never be displayed if the generator is empty. This may not exactly fit in with your code, but this is what the idiom of the generator is for: iterating, so perhaps you might change your approach slightly, or not use generators at all. |
||||||
|
|
|
I hate to offer a second solution, especially one that I would not use myself, but, if you absolutely had to do this and to not consume the generator, as in other answers:
Now I really don't like this solution, because I believe that this is not how generators are to be used. |
|||
|
|
|
|
Here is a recipe for an iterator wrapper, it probably allows to do what you want: http://code.activestate.com/recipes/502304/ Note: I have not tested if it works or not. Nor am I sure that the functionality is useful. |
||
|
|
|
|
The best approach, IMHO, would be to avoid a special test. Most times, use of a generator is the test:
If that's not good enough, you can still perform an explicit test. At this point,
|
||
|
|
|
|
Suggestion:
Usage:
|
||
|
|
