commit | 4e5101a7dcefcc28c6d8296f1b9d8eed10a6d75e | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Feb 17 02:58:27 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Feb 17 02:58:27 2022 +0000 |
tree | a3a1376bc898f7520a54af076af0a6c41706cc29 | |
parent | 6fc7d7c58e67ca79e43a29e996e9195180f74e2b [diff] | |
parent | bcbb2293e68b7ea9e451b4af2b3c5474708b6f59 [diff] |
Snap for 8191477 from bcbb2293e68b7ea9e451b4af2b3c5474708b6f59 to tm-frc-media-swcodec-release Change-Id: I5227b8707e20fcfab8056acecde1088b371faa34
“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();