(b: &mut Bencher)
| 185 | |
| 186 | #[bench] |
| 187 | fn eq_data_quick(b: &mut Bencher) { |
| 188 | let data = gen_eq_data(DATA_LEN); |
| 189 | b.iter(|| { |
| 190 | let mut numbs = data.clone(); |
| 191 | sort::quick::sort(&mut numbs); |
| 192 | }); |
| 193 | } |
| 194 | |
| 195 | #[bench] |
| 196 | fn small_selection_sort(b: &mut Bencher) { |
nothing calls this directly
no test coverage detected