(b: &mut Bencher)
| 149 | |
| 150 | #[bench] |
| 151 | fn large_quick(b: &mut Bencher) { |
| 152 | let data = gen_random_data(DATA_LEN); |
| 153 | b.iter(|| { |
| 154 | let mut numbs = data.clone(); |
| 155 | sort::quick::sort(&mut numbs); |
| 156 | }); |
| 157 | } |
| 158 | |
| 159 | #[bench] |
| 160 | fn large_quick_3way(b: &mut Bencher) { |
nothing calls this directly
no test coverage detected