#sliding #iterator #adaptor #elements #copy #backing #non-copying

sliding_windows

a non-copying implementation of a sliding windows iterator adaptor

7 stable releases

Uses old Rust 2015

3.0.0 Jun 16, 2017
2.0.4 Jun 7, 2017
2.0.3 Mar 17, 2016
2.0.2 Feb 10, 2016
1.0.0 Nov 17, 2015

#916 in Algorithms

Download history 43/week @ 2023-12-17 19/week @ 2023-12-24 28/week @ 2023-12-31 50/week @ 2024-01-07 43/week @ 2024-01-14 70/week @ 2024-01-21 27/week @ 2024-01-28 44/week @ 2024-02-04 55/week @ 2024-02-11 58/week @ 2024-02-18 72/week @ 2024-02-25 88/week @ 2024-03-03 93/week @ 2024-03-10 58/week @ 2024-03-17 29/week @ 2024-03-24 106/week @ 2024-03-31

298 downloads per month
Used in fuzzy_match

MIT license

19KB
325 lines

sliding_windows

This crate offers an Iterator adaptor, which yields "sliding windows" over the elements returned by the wrapped iterator.

It's worth to note that it does not copy elements, which makes the code relatively performant.

As a consequence it violates the Iterator protocol slightly. It is not possible to have two Windows into the data available at the same time. This is checked during runtime.

The backing storage is a Vec, so this Iterator adaptor is not ideal for very large windows (>20 elements or very huge elements).

I'd happily accept a PR to implement the same functionality with a VecDeque or similar, see this issue.

Install

Add this to your Cargo.toml.

[dependencies]
sliding_windows = "2.0"

Example

extern crate sliding_windows;
use sliding_windows::{IterExt, Storage};

let mut storage: Storage<u32> = Storage::new(3);

for x in (0..5).sliding_windows(&mut storage) {
    println!("{:?}", x);
}

// This outputs:
// [0, 1, 2]
// [1, 2, 3]
// [2, 3, 4]

For more examples please consult the Documentation.

This functionality in other languages/crates

No runtime deps