This commit is contained in:
nora 2023-12-03 16:22:39 +01:00
parent 2ed587b9d1
commit adc39acadc
8 changed files with 36 additions and 150 deletions

View file

@ -1,7 +1,6 @@
mod p2basic;
mod p2bytes;
mod p2faster_hash;
mod p2less_alloc;
mod p2less_branching;
mod p2with_capacity;
@ -22,7 +21,6 @@ helper::define_variants! {
basic => crate::p2basic::part2;
faster_hash => crate::p2faster_hash::part2;
with_capacity => crate::p2with_capacity::part2;
less_alloc => crate::p2less_alloc::part2;
less_branching => crate::p2less_branching::part2;
bytes => crate::p2bytes::part2;
}