We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a045717 commit feb819dCopy full SHA for feb819d
1 file changed
benchmarks/benches/lib.rs
@@ -599,6 +599,12 @@ fn intersection_with_serialized(c: &mut Criterion) {
599
})
600
}
601
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
+
608
// LEGACY BENCHMARKS
609
// =================
610
@@ -784,5 +790,6 @@ criterion_group!(
784
790
successive_and,
785
791
successive_or,
786
792
intersection_with_serialized,
793
+ union_with_serialized
787
794
);
788
795
criterion_main!(benches);
0 commit comments