Tab Atkins Jr. (2015-04-27T22:29:55.000Z)
On Mon, Apr 27, 2015 at 3:11 PM, John Lenz <concavelenz at gmail.com> wrote:
> By which I mean the object that returns the current value and "done" state?

IIRC, it's not supposed to.  The built-in iterators will return fresh
objects each time, so there's no mutation hazard.  Userland iterators
can of course violate this, but at their peril.

~TJ
d at domenic.me (2015-05-11T17:01:10.860Z)
IIRC, it's not supposed to.  The built-in iterators will return fresh
objects each time, so there's no mutation hazard.  Userland iterators
can of course violate this, but at their peril.