CI crates.io

multi_iter

Iterator for acting on multiple elements at a time.

Features

  1. Peek multiple elements with:

  2. Advance in windows by using:

  3. Collect with zero allocations using:

Installation

toml [dependencies] multi_iter = "0.1.4"

No-std support

It is possible to use this crate without the Rust standard library. Disable the default "std" feature by doing the following:

toml [dependencies] multi_iter = { version = "0.1.4", default-features = false }