(b: &mut Bencher)
| 11 | |
| 12 | #[bench] |
| 13 | fn sort_str_std_Vec(b: &mut Bencher) { |
| 14 | let i = WORDS3; |
| 15 | let mut words = extract_words(i); |
| 16 | b.iter(|| { |
| 17 | words.sort(); |
| 18 | }); |
| 19 | } |
| 20 | |
| 21 | #[bench] |
| 22 | fn sort_i32_std_Vec(b: &mut Bencher) { |
nothing calls this directly
no test coverage detected