Crate smolvec

Source
Expand description

A lightweight vector implementation with small-vector optimization.

SmallVec<T> is a vector implementation that optimizes for the case of small vectors by storing small arrays inline and only heap allocating for larger arrays.

Structsยง

SmolVec
A vector implementation with small-vector optimization.