commit | d8740c8186ee5352ad947ef91913839af65fa4e4 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Fri Mar 10 05:18:05 2023 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Fri Mar 10 05:18:05 2023 +0000 |
tree | b20f2866c1a76f13beb74f38d89e4f93290a0da8 | |
parent | a9494395048dc5dc05af4ebbb771410382c026e7 [diff] | |
parent | 34814782733122fa44ba90ca7a8e32ac1c410345 [diff] |
Snap for 9722771 from 34814782733122fa44ba90ca7a8e32ac1c410345 to udc-d1-release Change-Id: Ia6abc8bb3094fe0423c72fd39173a58091f90bb0
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