Skip to content

Releases: sunsided/generational-vector-rs

0.3.0

04 Jan 22:06
ed39ba2
Compare
Choose a tag to compare

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 and inline(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 uses Borrow<GenerationalIndex> to feel a bit more natural.

0.2.1

20 Dec 23:49
ed971b6
Compare
Choose a tag to compare

This release adds the implementation of Debug to the GenerationalVector type.

0.2.0

15 Apr 21:29
b2c60bc
Compare
Choose a tag to compare

Added collection iteration and construction from iterators.

0.1.0

15 Apr 18:36
3269eeb
Compare
Choose a tag to compare

Initial release providing the GenerationalVector<T> type.