Memory for Nothing: Why Vec<usize> is (probably) a bad idea
Every now and then one has to index something - and what's
better than a
Vec<usize>
?
Every now and then one has to index something - and what's
better than a
Vec<usize>
?
Memory allocators are great, I love allocating memory! But they can be a great source of pain as well - this is a story of how I lost one week catching a memory leak in a core Rust application at work.