8 releases
0.4.0 | Sep 24, 2020 |
---|---|
0.3.1 | Sep 24, 2020 |
0.3.0 | Nov 18, 2017 |
0.2.0 | Oct 19, 2016 |
0.1.3 | Aug 29, 2015 |
#1868 in Algorithms
33KB
901 lines
stack
Implements dynamically sized types over stack allocated arrays.
- The
Vector
trait exposes a generic trait forVec
-like operations. ArrayVec
implements aVector
interface over a fixed-size array.SmallVec
abstracts over a stack allocatedArrayVec
, and falls back to a heapVec
upon overflow.SmallDST
holds a DST such as a closure or other types in aVector
.