(text: &'static str)
| 557 | let start = Instant::now(); |
| 558 | let mut refs = Vec::with_capacity(ITEM_COUNT * ITERATIONS); |
| 559 | for _ in 0..ITERATIONS { |
| 560 | for hash in hashes { |
| 561 | refs.push(black_box(lookup(black_box(*hash)))); |
| 562 | } |
| 563 | } |
| 564 | let lookup_elapsed = start.elapsed(); |
| 565 | |
| 566 | let start = Instant::now(); |