#vec #stack #vector #no-std

no-std stackvector

StackVec: vector-like facade for stack-allocated arrays

3 stable releases

Uses old Rust 2015

1.1.1 Apr 19, 2021
1.1.0 Apr 13, 2021
1.0.8 Sep 5, 2019
1.0.6 Jun 20, 2019
1.0.1 Dec 7, 2018

#1734 in Data structures

Download history 233/week @ 2023-12-06 357/week @ 2023-12-13 332/week @ 2023-12-20 181/week @ 2023-12-27 181/week @ 2024-01-03 359/week @ 2024-01-10 294/week @ 2024-01-17 261/week @ 2024-01-24 164/week @ 2024-01-31 343/week @ 2024-02-07 442/week @ 2024-02-14 316/week @ 2024-02-21 454/week @ 2024-02-28 361/week @ 2024-03-06 353/week @ 2024-03-13 379/week @ 2024-03-20

1,612 downloads per month

MIT/Apache

55KB
1.5K SLoC

rust-stackvector

Documentation

Release notes

"StackVec": vector-like facade for stack-allocated arrays.

Comparison to ArrayVec

ArrayVec is a relatively mature stack vector implementation, using a backing array like stackvector. The main differences between ArrayVec and StackVec are in the compatibility with Vec's API, as well as the ease-of-creation.

Compatibility with Vec's API

ArrayVec includes numerous modifications from Vec's API, effectively requiring a wrapper to use it analogously to Vec. In certain situations, the extra functionality is desirable (for example, ArrayVec has push, which panics if the container exceeds the array's bounds, try_push, and push_unchecked, while stackvector only has push). In other cases, ArrayVec is missing numerous methods that simplify working with Vec. For example, ArrayVec is missing:

  1. Deduplication (dedup, dedup_by, dedup_by_key).
  2. Insert many elements (insert_many) (Non-standard).

Likewise, stackvector is missing certain convenience methods that are not present in Vec:

  1. Stack-allocated array is full (is_full).
  2. Dispose without dropping (dispose).

Version Support

Both ArrayVec and stackvector have support for Rustc versions as old as 1.20.0.

License

StackVector is derived from Servo's smallvec, and like smallvec, it is dual licensed under either the MIT or Apache 2.0 license.

Version Support

Stackvector has been tested on version of Rustc as low as 1.36.0 (needed for mem::MaybeUninit).

Dependencies

~30KB