Make specialize_types lower to a new representation

This commit is contained in:
Richard Feldman 2024-10-14 22:13:50 -04:00
parent 0d459cc84b
commit 3520145378
No known key found for this signature in database
GPG key ID: 5DE4EE30BB738EDF
14 changed files with 654 additions and 164 deletions

9
crates/soa/src/lib.rs Normal file
View file

@ -0,0 +1,9 @@
mod either_index;
mod soa_index;
mod soa_slice;
mod soa_slice2;
pub use either_index::*;
pub use soa_index::*;
pub use soa_slice::*;
pub use soa_slice2::*;