rs-progress 0.1.1

Command line Progress made easy
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 4 items with examples
  • Size
  • Source code size: 4.42 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • M-Schwab

A very simple package providing a progress wraper for any iterable


use rs_progress::Progressable;
// returns sum of 45, and shows prompt on the command line
let sum = (0..10).prog().reduce(|a,b| {a+b}).unwrap();