zzz 0.3.2

Fast progress bar with sane defaults
Documentation
1
2
3
4
5
6
7
8
9
10
use zzz::*;

fn main() {
    let mut pb = ProgressBar::spinner();
    pb.set_message(Some("Hot loop:"));

    for _ in (0..100_000_000_000u64).into_iter().with_progress(pb) {
        // do.. absolutely nothing but displaying the PB.
    }
}