(b: &mut Bencher, n: usize)
| 74 | } |
| 75 | |
| 76 | fn bench_histogram_simple(b: &mut Bencher, n: usize) { |
| 77 | let data = bench_data(n); |
| 78 | b.iter(|| histogram_simple(black_box(&data))); |
| 79 | } |
| 80 | |
| 81 | macro_rules! bench { |
| 82 | ($name:ident, $($n:literal),+) => { |
nothing calls this directly
no test coverage detected