File: CHANGELOG.md

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (39 lines) | stat: -rw-r--r-- 1,372 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Change Log

## [v0.3.0] - 2023-05-22

### Removed

* `FromFallibleIterator` trait is removed, `FallibleIterator::collect` now requires `std::iter::FromIterator`,
  which has strictly more implementations.

### Added

* add convenient wrapper for std::iter::Iterator
* more utilities mirroring std::iter
* Peekable methods
* `IteratorExt` for convenient conversion
* `FallibleIterator::unwrap`

## [v0.2.0] - 2019-03-10

### Changed

* All closures used by adaptor methods now return `Result`s.
* `FromFallibleIterator::from_fallible_iterator` has been renamed to `from_fallible_iter` and now takes an
    `IntoFallibleIterator`.
* `IntoFallibleIterator::into_fallible_iterator` has been renamed to `into_fallible_iter`.
* `IntoFallibleIterator::IntoIter` has been renamed to `IntoFallibleIter`.

### Removed

* `FallibleIterator::and_then` has been removed as `FallibleIterator::map` is now equivalent.

### Added

* Added `step_by`, `for_each`, `skip_while`, `take_while`, `skip`, `scan`, `flat_map`, `flatten`, `inspect`,
    `partition`, `find_map`, `max_by`, `min_by`, `unzip`, `cycle`, and `try_fold` to `FallibleIterator`.
* Added `rfold` and `try_rfold` to `DoubleEndedFallibleIterator`.

[Unreleased]: https://github.com/sfackler/rust-fallible-iterator/compare/v0.2.0...master
[v0.2.0]: https://github.com/sfackler/rust-fallible-iterator/compare/v0.1.5...v0.2.0