2 releases
0.1.1 | Aug 10, 2021 |
---|---|
0.1.0 | Jul 17, 2021 |
#86 in #show
5KB
103 lines
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();