[][src]Type Definition rhai::StaticVec

type StaticVec<T> = SmallVec<[T; 4]>;

(INTERNALS) Alias to smallvec::SmallVec<[T; 4]>, which is a specialized Vec backed by a small, fixed-size array when there are <= 4 items stored. Exported under the internals feature only.