4 releases
0.0.4 | Jun 20, 2022 |
---|---|
0.0.3 | Jun 20, 2022 |
0.0.2 | Jun 18, 2022 |
0.0.1 | Jun 14, 2022 |
#1608 in Algorithms
17KB
321 lines
Rollercoaster
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.