this post was submitted on 10 Apr 2024
0 points (NaN% liked)
Rust
5974 readers
15 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This blog post goes into some specifics of Rust reusing Vec allocations and some of the consequences. I think it's really worth a read to better understand Vecs. From what I understand, it is possible that Rust will reuse the allocation of
vec_a
in your case, but it ultimately is quite complicated.That was a super interesting and informative read! Exactly what I was hoping to find when I posted this, thanks!