commit | 19b8a179090c1a366e5f449e4f7451bd8c13863c | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Fri Feb 12 19:49:22 2021 -0800 |
committer | Bob Badour <[email protected]> | Fri Feb 12 19:49:22 2021 -0800 |
tree | a1c87d44d1f42b4337a096fe18f71233da3b57c8 | |
parent | 6dadc1b1a35da63eb97b56a0593e043fb9b7fa6c [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/smallvec Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT to: Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: Ieaa915df84de338864d27350a086f28feebe89c4
“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();