commit | 871f09f27774e9ce2535322d6f4aa2fbd24ec053 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Feb 17 03:30:19 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Feb 17 03:30:19 2022 +0000 |
tree | a3a1376bc898f7520a54af076af0a6c41706cc29 | |
parent | d205197ac63b884607c3338e8653babc8c830181 [diff] | |
parent | bcbb2293e68b7ea9e451b4af2b3c5474708b6f59 [diff] |
Snap for 8192848 from bcbb2293e68b7ea9e451b4af2b3c5474708b6f59 to tm-frc-os-statsd-release Change-Id: Ic52dcde2a4838fc615ddcac88912d1b3902f04d9
“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();