Is the following use of next() allowed?
The update does not seem to work in this case, even when
changes
is a non-empty object. No error is raised, and when I printed the result, it has { value : null, done : true }
.
Solution:Jump to solution
It turns out, no, that's not allowed. It seems like
done: true
signifies that the traversal sequence was already committed and I'm doing basically nothing.2 Replies