slimvec 0.2.3

Dynamic array with a smaller inline-size
Documentation
`slimvec`
=========

[github]

[github]: https://github.com/ickk/slimvec

`SlimVec` is analogous to the Standard Library's `Vec` collection type, however
it has a smaller inline-size.

- [Overview]docs/Overview.md
- [Architecture]docs/Architecture.md
- [Testing]docs/Testing.md
- [Future-work]docs/Future-work.md

```text
  SlimVec<T>            Allocation
+-------------+       +-------------+
| ptr: 0xabcd | ----> | length:   2 |
+-------------+       |-------------|
                      | capacity: 4 |
                      |=============|
                      | 0:        A |
                      |-------------|
                      | 1:        B |
                      |-------------|
                      | 2: <uninit> |
                      |-------------|
                      | 3: <uninit> |
                      +-------------+
```

Licensing
---------

This library may be [licensed](LICENSE.md) under any of the following
[Zlib-License](LICENSE.md#zlib-license),
[MIT-License](LICENSE.md#mit-license), or
[Apache2-License](LICENSE.md#apache2-license)
at your option.

-------------------------------------------------------------------------------
<footer><small>© ickk 2026.</small></footer>