| Crates.io | multi_iter |
| lib.rs | multi_iter |
| version | 0.1.6 |
| created_at | 2023-03-18 03:00:28.954779+00 |
| updated_at | 2023-03-18 23:18:33.414013+00 |
| description | Iterator for acting on multiple elements at a time |
| homepage | |
| repository | https://github.com/mklifo/multi_iter |
| max_upload_size | |
| id | 813484 |
| size | 20,226 |
multi_iterIterator for acting on multiple elements at a time.
Peek multiple elements with:
peek_npeek_restAdvance in windows by using:
next_nnext_n_if_eachnext_n_if_sliceCollect with zero allocations using:
remainingremaining_ifremaining_if_slice[dependencies]
multi_iter = "0.1.6"
It is possible to use this crate without the Rust standard library. Disable the default "std" feature by doing the following:
[dependencies]
multi_iter = { version = "0.1.6", default-features = false }