#iterator #iterator-adapter #no-std #windows

no-std iterwindows

An iterator adapter to iterate over all contiguous windows of length N

7 releases (4 breaking)

0.5.0 Nov 28, 2023
0.4.0 Nov 28, 2023
0.3.0 Dec 4, 2022
0.2.0 Dec 1, 2022
0.1.2 Nov 29, 2022

#1603 in Algorithms

Download history 41/week @ 2023-12-14 32/week @ 2023-12-21 116/week @ 2023-12-28 13/week @ 2024-01-04 1/week @ 2024-01-11 6/week @ 2024-02-08 97/week @ 2024-02-15 104/week @ 2024-02-22 82/week @ 2024-02-29 43/week @ 2024-03-07 32/week @ 2024-03-14 20/week @ 2024-03-21 49/week @ 2024-03-28

155 downloads per month

MIT/Apache

71KB
1K SLoC

iterwindows

Crates.io Version Docs.rs Latest Build Status

This crate provides an iterator adapter to iterate over all contiguous windows of length N.

Deprecated

This crate is deprecated in favour of the itermore crate and it currently just re-exports types from there. The following dependency definition is the equivalent of using this crate.

# Cargo.toml

[dependencies]
itermore = { version = "...", default-features = false, features = ["array_windows"] }

Getting started

Add the crate to your Cargo manifest.

cargo add iterwindows

And bring the IterArrayWindows trait into scope.

use iterwindows::IterArrayWindows;

Now you can use the array_windows method on any iterator.

for [a, b, c] in iter.array_windows() {
    println!("{} {} {}", a, b, c)
}

Generally the size of N can be inferred by the compiler but you can also specify it manually.

let w = iter.array_windows::<3>();

License

This project is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Dependencies