iter_help 0.1.0

This library provides helpful tools for iterating over collections of data.
Documentation
  • Coverage
  • 0%
    0 out of 87 items documented0 out of 28 items with examples
  • Size
  • Source code size: 22.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.58 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: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • AustinHellerRepo/iter_help
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • AustinHellerRepo

Iterator Helper - iter_help

This library provides helpful structures, traits, and functionality for iterators with the goal of encapsulating complex concepts and making iterating over multiple iterators efficient.

Features

  • ping_pong
    • This module allows for users to map a tuple of Vec or Iter into a single Vec of some other type while ensuring that each collection is only traveled through once. This optimizes the iteration into an efficiency of O(SUM(Ni)) where Ni is the length of each collection.
    • A common usage of this module is to merge sorted collections into one final collection.

Examples

TODO