iterators_extended 0.1.0

Some useful extensions to Rust's iterators.
Documentation
  • Coverage
  • 13.04%
    3 out of 23 items documented0 out of 23 items with examples
  • Size
  • Source code size: 18.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 5.47 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • adamthedash/iterators
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • adamthedash

Extended Iterators

Some useful extensions to rust's iterators.

Modules

  • buffered: Maintains a buffer of items in memory.
  • interleave: Interleaves two iterators.
  • logging: Unwraps Result items, debug printing any errors.
  • stateful: Maps a function to items, but allows passing a struct to be used as "working" state. Eg. when the function needs to allocate a lot of memory to compute intermediate values.
  • threaded: Multi-threaded map that maintains the ordering of items in the iterator.
  • stateful_threaded: Combination of the stateful and threaded modules.