Bug: 159603647

Clone this repo:
  1. 1d11037 Make smallvec available to product and vendor am: 48d46cce35 by Matthew Maurer · 3 weeks ago master
  2. 48d46cc Make smallvec available to product and vendor by Matthew Maurer · 3 weeks ago
  3. 60b9cf9 Upgrade smallvec to 1.10.0 am: db74ff043c by Jeff Vander Stoep · 7 weeks ago
  4. db74ff0 Upgrade smallvec to 1.10.0 by Jeff Vander Stoep · 7 weeks ago
  5. 497e98b Update TEST_MAPPING am: b9d5e9fc1a by Jeff Vander Stoep · 8 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();