Skip to content

Commit feb819d

Browse files
committed
bench
1 parent a045717 commit feb819d

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

benchmarks/benches/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,12 @@ fn intersection_with_serialized(c: &mut Criterion) {
599599
})
600600
}
601601

602+
fn union_with_serialized(c: &mut Criterion) {
603+
pairwise_ops_with_serialized(c, "union_with_serialized_unchecked", |a, b| {
604+
a.union_with_serialized_unchecked(Cursor::new(b)).unwrap()
605+
})
606+
}
607+
602608
// LEGACY BENCHMARKS
603609
// =================
604610

@@ -784,5 +790,6 @@ criterion_group!(
784790
successive_and,
785791
successive_or,
786792
intersection_with_serialized,
793+
union_with_serialized
787794
);
788795
criterion_main!(benches);

0 commit comments

Comments
 (0)