We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db5e25d commit 2cf14d9Copy full SHA for 2cf14d9
benches/arena.rs
@@ -265,6 +265,12 @@ fn criterion_benchmark(c: &mut Criterion) {
265
266
bench_arena_rc_drop::<80>(c, OP_COUNT);
267
bench_std_rc_drop::<80>(c, OP_COUNT);
268
+
269
+ bench_arena_rc_new::<160>(c, OP_COUNT);
270
+ bench_std_rc_new::<160>(c, OP_COUNT);
271
272
+ bench_arena_rc_drop::<160>(c, OP_COUNT);
273
+ bench_std_rc_drop::<160>(c, OP_COUNT);
274
}
275
276
criterion_group!(benches, criterion_benchmark);
0 commit comments