rollercoaster 0.0.3

Extra iterators for grouping, sorting, arithmetic, and more.
Documentation

Rollercoaster

Build docs.rs Crate

This crate adds extra iterators, with extension methods so you can access them from any type implementing Iterator.

Usage

Add Rollercoaster to your Cargo.toml

[dependencies]

rollercoaster = "0.0.2"

Import the trait into your module

use rollercoaster::Rollercoaster;

fn main() {
  let iter = vec![1, 2, 3].into_iter();

  // The methods are now available for us to use
  iter.memory();
}

Contributing

Please create a github issue if you run into any problems.