Crates.io | stackvector |
lib.rs | stackvector |
version | 1.1.1 |
source | src |
created_at | 2018-12-07 09:33:26.406626 |
updated_at | 2021-04-19 15:30:14.79865 |
description | StackVec: vector-like facade for stack-allocated arrays. |
homepage | |
repository | https://github.com/Alexhuszagh/rust-stackvector |
max_upload_size | |
id | 100578 |
size | 66,880 |
"StackVec": vector-like facade for stack-allocated arrays.
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:
dedup
, dedup_by
, dedup_by_key
).insert_many
) (Non-standard).Likewise, stackvector is missing certain convenience methods that are not present in Vec:
is_full
).dispose
).Version Support
Both ArrayVec and stackvector have support for Rustc versions as old as 1.20.0.
StackVector is derived from Servo's smallvec, and like smallvec, it is dual licensed under either the MIT or Apache 2.0 license.
Stackvector has been tested on version of Rustc as low as 1.36.0 (needed for mem::MaybeUninit
).