resiter 0.5.0

Helper crate for handling iterators over result
Documentation
  • Coverage
  • 49.46%
    46 out of 93 items documented25 out of 66 items with examples
  • Size
  • Source code size: 93.4 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 36.92 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • matthiasbeyer

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