(b: &mut Bencher)
| 194 | |
| 195 | #[bench] |
| 196 | fn small_selection_sort(b: &mut Bencher) { |
| 197 | b.iter(|| { |
| 198 | let mut numbs = [1, 2, 4, 8, 9, 9, 13, 17, 22]; |
| 199 | sort::selection::sort(&mut numbs); |
| 200 | }); |
| 201 | } |
| 202 | |
| 203 | #[bench] |
| 204 | fn small_selection_tree_selection(b: &mut Bencher) { |