commit | 65a04b3848f2128a6672e97d66b951b683d37f53 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <[email protected]> | Tue Mar 08 22:02:43 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Mar 08 22:02:43 2022 +0000 |
tree | 8a0aaf450d87ced0b38394bff96d3d54d2ee92be | |
parent | bcbb2293e68b7ea9e451b4af2b3c5474708b6f59 [diff] | |
parent | ac24ff21446946814ef55de44ca52e5c0be9ac89 [diff] |
Merge "Update smallvec to 1.8.0" am: 2b8efd428c am: 3d0e7105d4 am: ac24ff2144 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/smallvec/+/2004421 Change-Id: I9b7a911a4b5894136e9368835a7680457937ad11
“Small vector” optimization for Rust: store up to a small number of items on the stack
use smallvec::{SmallVec, smallvec}; // This SmallVec can hold up to 4 items on the stack: let mut v: SmallVec<[i32; 4]> = smallvec![1, 2, 3, 4]; // It will automatically move its contents to the heap if // contains more than four items: v.push(5); // SmallVec points to a slice, so you can use normal slice // indexing and other methods to access its contents: v[0] = v[1] + v[2]; v.sort();