| commit | 3fa2317dc3a3432cbce9d4e1b2a0b8c62dc78c7c | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Mar 10 04:19:07 2023 +0000 |
| committer | Automerger Merge Worker <[email protected]> | Fri Mar 10 04:19:07 2023 +0000 |
| tree | b20f2866c1a76f13beb74f38d89e4f93290a0da8 | |
| parent | 2c79c76004244126b482974fd1dc0bde38eb7411 [diff] | |
| parent | 0ea2a41672828fd67f1f8ff7492adc3af08e2a9d [diff] |
Snap for 9719949 from a18dbf841b9e47ee299fae975d6cc08204c5c054 to udc-release am: 0ea2a41672 Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/tinyvec/+/21946870 Change-Id: I91487e71d2e521d2a2cdfa0077a63638e2e116a5 Signed-off-by: Automerger Merge Worker <[email protected]>
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