Bug: 159603647

Clone this repo:
  1. 2b2231c Migrate 25 crates to monorepo. am: eacd222621 by James Farrell · 6 weeks ago main master
  2. eacd222 Migrate 25 crates to monorepo. by James Farrell · 6 weeks ago
  3. 394b851 Update Android.bp by running cargo_embargo am: 89d5aa5863 by James Farrell · 9 weeks ago
  4. 89d5aa5 Update Android.bp by running cargo_embargo by James Farrell · 10 weeks ago
  5. 27080cf Merge "Mark apex-available" into main am: 186e8f9d6c by Treehugger Robot · 3 months ago android15-tests-dev

rust-smallvec

Documentation

Release notes

“Small vector” optimization for Rust: store up to a small number of items on the stack

Example

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();