diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/indicatif/examples/fastbar.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/indicatif/examples/fastbar.rs')
-rw-r--r-- | vendor/indicatif/examples/fastbar.rs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/indicatif/examples/fastbar.rs b/vendor/indicatif/examples/fastbar.rs deleted file mode 100644 index 1b71f0c..0000000 --- a/vendor/indicatif/examples/fastbar.rs +++ /dev/null @@ -1,23 +0,0 @@ -use indicatif::ProgressBar; - -fn many_units_of_easy_work(n: u64, label: &str) { - let pb = ProgressBar::new(n); - - let mut sum = 0; - for i in 0..n { - // Any quick computation, followed by an update to the progress bar. - sum += 2 * i + 3; - pb.inc(1); - } - pb.finish(); - - println!("[{}] Sum ({}) calculated in {:?}", label, sum, pb.elapsed()); -} - -fn main() { - const N: u64 = 1 << 20; - - // Perform a long sequence of many simple computations monitored by a - // default progress bar. - many_units_of_easy_work(N, "Default progress bar "); -} |