5 releases (breaking)
Uses old Rust 2015
0.5.0 | Apr 26, 2023 |
---|---|
0.4.0 | Oct 25, 2019 |
0.3.0 | Dec 19, 2018 |
0.2.0 | Oct 29, 2018 |
0.1.0 | Feb 22, 2018 |
#232 in Rust patterns
5,382 downloads per month
Used in 69 crates
(31 directly)
64KB
1K
SLoC
resiter
A collection of helpful iterator adaptors for iterating over Result<T, E>
.
Examples
Here go some examples what you can do with the library.
- Altering T in
Iterator<Item = Result<T, E>>
iter.map(|r| r.map(|a| alter(a))) // stdlib
iter.map_ok(|a| alter(a)) // resiter
- Altering T in
Iterator<Item = Result<T, E>>
with a function that might fail:
iter.map(|r| r.and_then(|a| alter(a))) // stdlib
iter.and_then_ok(|a| alter(a)) // resiter
- Unpacking T in
Iterator<Item = Result<Option<T>, E>>
iter.map(|r| r.and_then(|o| o.ok_or_else(|| error()))) // stdlib
iter.inner_ok_or_else(|| error()) // resiter
- Executing code for each error in
Iterator<Item = Result<T, E>>
iter.map(|r| if let Err(e) = r { foo(); Err(e) } else { r })) // stdlib
iter.map(|r| r.map_err(|e| { foo(); e })) // stdlib
iter.on_err(|e| foo()) // resiter
License
MPL 2.0