rustc/vendor/smallvec
2021-04-05 22:17:21 +01:00
..
benches New upstream version 1.47.0~beta.2+dfsg1 2020-09-04 16:38:49 +01:00
scripts New upstream version 1.45.0+dfsg1 2020-07-26 20:51:33 +01:00
src New upstream version 1.51.0+dfsg1 2021-04-05 22:17:21 +01:00
tests New upstream version 1.47.0~beta.2+dfsg1 2020-09-04 16:38:49 +01:00
.cargo-checksum.json New upstream version 1.51.0+dfsg1 2021-04-05 22:17:21 +01:00
Cargo.toml New upstream version 1.51.0+dfsg1 2021-04-05 22:17:21 +01:00
LICENSE-APACHE New upstream version 1.32.0~beta.2+dfsg1 2018-12-16 10:13:16 -08:00
LICENSE-MIT New upstream version 1.32.0~beta.2+dfsg1 2018-12-16 10:13:16 -08:00
README.md New upstream version 1.45.0+dfsg1 2020-07-26 20:51:33 +01:00

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