iterslide 0.0.1

A "sliding window" iterator.
docs.rs failed to build iterslide-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: iterslide-1.0.1

rust-iterslide

This package implements a "sliding window" iterator.

Sample usage:

extern crate iterslide;

use iterslide::SlideIterator;

fn main() {
  for window in vec![1i, 2, 3, 4, 5].into_iter().slide(3) {
    println!("{}", window);
  }
}