13 unstable releases (3 breaking)
0.4.1 | Apr 10, 2022 |
---|---|
0.4.0 | Apr 10, 2022 |
0.3.0 | Apr 8, 2022 |
0.2.4 | Jan 25, 2022 |
0.1.5 | Jan 8, 2022 |
#2321 in Data structures
27 downloads per month
Used in btree-map
41KB
755 lines
This library provides an array type that is similar to the built-in Vec type, but lives on the stack!
You may use this library to store a fixed number of elements of a specific type (even non-copy types)
Example
use stack_array::*;
let mut arr: ArrayBuf<String, 4> = ArrayBuf::new();
arr.push("Hello".into());
arr.push("World".into());
println!("{:#?}", arr);
Note: Documentation is incomplete and may be inaccurate. I do not have the time to update it. Please report any issues, or contribute!