[][src]Crate tinyvec

Just, really the littlest Vec you could need. So smol.

Structs

TinyVec

A TinyVec<T> is like a Vec<T>, but it will store up to 8 elements "inline" on the stack before transitioning into being a normal Vec<T>.