contiguous-data-in-rust
contiguous-data-in-rust copied to clipboard
An opinionated guide that tries to help you choose the best way to store contiguous data in Rust
Results
2
contiguous-data-in-rust issues
Sort by
recently updated
recently updated
newest added
[It's](https://github.com/rust-cv/header-vec) a vec where length, capacity, an extra thing of your choosing and everything in the array all go together on the other side of the pointer: https://docs.rs/header-vec/0.1.0/header_vec/struct.HeaderVec.html it seems...
When working with SIMD, for example, memory alignment may matter. It would be good if this guide also discusses ways to allocate memory for SIMD that is, e.g., aligned to...