Search
❯
Feb 05, 20251 min read
A heap allocator
let mut v1 = Vec::new(); v1.push(1);
let v1 = vec![1,2,3];