Imagine, we have a range like this: ```js const iterator = range(0, 4, 2) ``` Then we get ```js [ 0, 2, 4 ] ``` and both `iterator.done` and, let's say, `iterator.exhausted` would be `true`. ALright, now image this: ```js const iterator = range(0, 5, 2) ``` This would also yield ```js [ 0, 2, 4 ] ``` but now, `iterator.done`, while `iterator.exhausted` would be `false`. A hypothetical `iterator.remainder` would be `1`. Would anyone need that? Has this already been considered?