This crate adds extra iterators, with extension methods so you can access them from any type implementing Iterator
.
Add Rollercoaster
to your Cargo.toml
toml
[dependencies]
rollercoaster = "0.0.2"
Import the trait into your module
```rust use rollercoaster::Rollercoaster;
fn main() { let iter = vec![1, 2, 3].into_iter();
// The methods are now available for us to use iter.memory(); } ```
Please create a github issue if you run into any problems.