This package implements a "sliding window" iterator.
Sample usage:
```rust extern crate iterslide;
use iterslide::SlideIterator;
fn main() {
let v: Vec
for window in v.slide(3) {
println!("{:?}", window);
}
} ```
Output:
[1, 2, 3]
[2, 3, 4]
[3, 4, 5]
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.