Releases: nekitdev/iters
Releases · nekitdev/iters
v0.6.0
iters 0.6.0 (2022-11-08)
Internal
- Migrate to using
named
and solus
packages instead of reimplementing their functionality. (#18)
v0.5.0
iters 0.5.0 (2022-10-11)
Changes
-
Functions taking Predicate[T]
have been updated to accept Optional[Predicate[T]]
.
Passing None
as an argument is identical to passing bool
.
There are three functions which do not accept None
, though:
drop_while
skip_while
take_while
This choice is motivated by the fact that it does not make much sense to do_while(None)
.
v0.4.0
iters 0.4.0 (2022-10-08)
Changes
- The following functions have been changed:
async_iter
is now an alias of AsyncIter
;
iter
is now an alias of Iter
;
reversed
is now an alias of iter.reversed
.
v0.3.0
iters 0.3.0 (2022-08-17)
Changes
- Change functions of various arity returning
Awaitable[T]
to async functions returning T
. (#15)
v0.2.0
iters 0.2.0 (2022-08-15)
Changes
- Add
await async_iter
, equivalent to await async_iter.list()
.
v0.1.0
iters 0.1.0 (2022-08-01)
Initial release.