commit | 3487d68bdab6f20e2ab931c8283f63c94862cf31 | [log] [tgz] |
---|---|---|
author | Peter Lamut <plamut@users.noreply.github.com> | Tue Jun 08 10:30:29 2021 +0200 |
committer | GitHub <noreply@github.com> | Tue Jun 08 10:30:29 2021 +0200 |
tree | deec7de500fc831efabcbe25e2371f4326ce116b | |
parent | 641fbbf95c4cf72e48e2a58d563e41b2a1787bbf [diff] |
feat: add iterator capability to paged iterators (#200) * feat: add iterator capability to *Iterator classes The *Iterator classes are only _iterables_, and this commit also makes them _iterators_, i.e. calling next(iterator) on them now works. * Make AsyncIterator an actual async iterator