Releases: sunsided/generational-vector-rs
Releases · sunsided/generational-vector-rs
0.3.0
Added
- Added support for smallvec via the
smallvec
feature. - Added support for tinyvec via the
tinyvec
feature.
Changed
- Some frequently used functions were marked as
const
andinline(always)
. - The internal
len
property of the vector was removed and the length is now dynamically calculated from the data and free lists. - The
remove
function now usesBorrow<GenerationalIndex>
to feel a bit more natural.