diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-12-25 19:41:02 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-12-25 19:43:15 +0100 |
commit | acb122c0fcb3757aef2dc31a4757c1215b2917cf (patch) | |
tree | 26b4a1ecc68fa85bc4b7814804f3bef2bbe706ca /CHANGELOG.md | |
parent | fe6f896d1a513431c3ddeecd30e5befe81514db5 (diff) | |
download | parseq-acb122c0fcb3757aef2dc31a4757c1215b2917cf.tar |
Implement size_hint, FusedIterator, ExactIterator
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd07b2..548607b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,17 +10,23 @@ The format is based on [Keep A Changelog][] and this project adheres to ## Unreleased +### Changed + +- Implemented `Iterator::size_hint` for `ParallelMap` +- Implemented `FusedIterator` for `ParallelMap` +- Implemented `ExactSizeIterator` for `ParallelMap` + ## [0.1.1] - 2022-12-21 Improved documentation and tests. ### Added -- Added recursive SHA256 example application. +- Added recursive SHA256 example application ### Changed -- `ParallelIterator` and `ParallelMap` must be used. +- `ParallelIterator` and `ParallelMap` must be used ## [0.1.0] - 2022-12-18 @@ -28,4 +34,4 @@ Released the first version. ### Added -- Added initial implementation. +- Added initial implementation |