lazy-pbar
A very lazy wrapper for any ProgressIterator with known length.
Style heavily borrowing from tqdm.
Example:
use lazy_pbar::pbar;
let mut x = 0;
for i in pbar(0..1_000_000) {
x = i;
}
A very lazy wrapper for any ProgressIterator with known length.
Style heavily borrowing from tqdm.
Example:
use lazy_pbar::pbar;
let mut x = 0;
for i in pbar(0..1_000_000) {
x = i;
}