Bug: 159603647

Clone this repo:
  1. 4d3d01e Update Android.bp by running cargo_embargo am: 5edf2a06f2 by James Farrell · 4 weeks ago main master
  2. 5edf2a0 Update Android.bp by running cargo_embargo by James Farrell · 4 weeks ago
  3. c3c93ec Ensure libstd is used by enabling "write" feature am: 3de05fa516 by Chris Wailes · 5 weeks ago
  4. 3de05fa Ensure libstd is used by enabling "write" feature by Chris Wailes · 5 weeks ago
  5. f62213b Empty merge of Android 24Q2 Release (ab/11526283) to aosp-main-future by Xin Li · 7 weeks ago

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