Other empty objects in Python evaluate as False -- how can I get iterators/generators to do so as well?
|
|
|
Guido doesn't want generators and iterators to behave that way. Objects are true by default. They can be false only if they define __len__ that returns zero or __nonzero__ that returns False (the latter is called __bool__ in Py3.x). You can add one of those methods to a custom iterator, but it doesn't match Guido's intent. He rejected adding __len__ to iterators where the upcoming length is known. That is how we got __length_hint__ instead. So, the only way to tell if an iterator is empty is to call next() on it and see if it raises StopIteration. On ASPN, I believe there are some recipes using this technique for lookahead wrapper. If a value is fetched, it is saved-up the an upcoming next() call. |
|||||||||||
|
|
an 'empty thing' is automatically not an iterator. containers can be empty or not, and you can get iterators over the containers, but those iterators are not falsey when exhausted. A good example of why iterators don't become falsey is here's another example
there's no way of knowing if this generator will return any more numbers without doing a bunch of work, you actually have to find out what the next value will be. The solution is to just get the next value from the iterator. If it is empty, your loop will exit, or you'll get a |
|||||||||||||
|
|
By default all objects in Python evaluate as Because the iterator protocol is intentionally kept simple, and because there are many types of iterators/generators that aren't able to know if there are more values to produce before attempting to produce them, If you really want this behavior, you have to provide it yourself. One way is to wrap the generator/iterator in a class that provides the missing functionality. Note that this code only evaluates to False after StopIteration has been raised. As a bonus, this code works for pythons 2.4+
If you also want look-ahead (or peek) behavior, this code will do the trick (it evaluates to
Keep in mind that peek behaviour is not appropriate when the timing of the underlying iterator/generator is relevant to its produced values. Also keep in mind that third-party code, and possibly the stdlib, may rely on iterators/generators always evaluating to |
||||
|
|