commit | c7447f8575bedeb4b65d8c279064f21b36053140 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <jeffv@google.com> | Thu Dec 17 22:23:12 2020 +0100 |
committer | Jeff Vander Stoep <jeffv@google.com> | Thu Dec 17 22:23:12 2020 +0100 |
tree | 41c2d521fc840654c5ae4ff56302b84b192c75c0 | |
parent | faa5a6836671951b507195977f1f67b9eb901074 [diff] |
Initial import of tinyvec v1.1.0 Test: n/a Change-Id: I7ef105954efca2b429d2a98b5f655b60f86a2be8
A 100% safe crate of vec-like types. #![forbid(unsafe_code)]
Main types are as follows:
ArrayVec
is an array-backed vec-like data structure. It panics on overflow.SliceVec
is the same deal, but using a &mut [T]
.TinyVec
(alloc
feature) is an enum that's either an Inline(ArrayVec)
or a Heap(Vec)
. If a TinyVec
is Inline
and would overflow it automatically transitions to Heap
and continues whatever it was doing.To attain this “100% safe code” status there is one compromise: the element type of the vecs must implement Default
.
For more details, please see the docs.rs documentation