macro_rules! timethis_loops {
($nloops:expr, $block:block) => { ... };
}Expand description
Runs the block of code n times and returns the execution time
in a std::time::Duration
macro_rules! timethis_loops {
($nloops:expr, $block:block) => { ... };
}Runs the block of code n times and returns the execution time
in a std::time::Duration