slimvec
SlimVec is analogous to the Standard Library's Vec collection type, however
it has a smaller inline-size.
SlimVec<T> Allocation
+-------------+ +-------------+
| ptr: 0xabcd | ----> | length: 2 |
+-------------+ |-------------|
| capacity: 4 |
|=============|
| 0: A |
|-------------|
| 1: B |
|-------------|
| 2: <uninit> |
|-------------|
| 3: <uninit> |
+-------------+
Licensing
This library may be licensed under any of the following Zlib-License, MIT-License, or Apache2-License at your option.