CI

multi_iter

Iterator for acting on multiple elements at a time.

Features

  1. Peek multiple elements with:
  2. peek_n
  3. peek_rest

  4. Advance in windows by using:

  5. next_n
  6. next_n_if_each
  7. next_n_if_slice

  8. Collect with zero allocations using:

  9. remaining
  10. remaining_if
  11. remaining_if_slice

Installation


toml [dependencies] multi_iter = "0.1.2"

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.2", default-features = false }