5 ms·
A refreshing break from Molt News. Now I want to check how vectors are implemented in my favorite languages.
by wasting_time 3mo ago
A refreshing break from Molt News. Now I want to check how vectors are implemented in my favorite languages.
- inhumantsar 3mo agothe `im` rust crate provides immutable data structures, one of them being an RRB-based Vec. don't remember what the stdlib Vec uses.
- oniony 3mo agoI believe Vec is a straight array underneath, which is reallocated at a larger size when full. And Vector in the `im` crate you mentioned looks very interesting indeed.