rollercoaster 0.0.4

Extra iterators for grouping, sorting, arithmetic, and more.
Documentation
  • Coverage
  • 87.5%
    7 out of 8 items documented7 out of 7 items with examples
  • Size
  • Source code size: 16.09 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.49 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Enitoni/rollercoaster
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Enitoni

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.