commit | fbe18b59cfe47697cc2aab958fbbe91aa9e3c2f3 | [log] [tgz] |
---|---|---|
author | Maurice Lam <yukl@google.com> | Mon Dec 18 20:08:28 2023 +0000 |
committer | Maurice Lam <yukl@google.com> | Mon Dec 18 20:13:19 2023 +0000 |
tree | 18af4f5ec90bd2bf1c1df2dd3d030f539b1a6d21 | |
parent | 262e772f4c86cfa8cef9c276732b309dd353fd9a [diff] |
Add rustc_1_57 feature to tinyvec To get const-generic implementation of the Array trait on arrays of any length. Test: m libtinyvec libtinyvec_nostd && atest tinyvec_test_tests_tinyvec tinyvec_test_tests_arrayvec Change-Id: I8ae9f068df343e53ad07d6b956d4842e1056f84f
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