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

#1905 in Algorithms

Download history 26/week @ 2024-02-25 19/week @ 2024-03-03 6/week @ 2024-03-10 78/week @ 2024-03-31

85 downloads per month

MIT license

33KB
901 lines

stack

travis-badge release-badge docs-badge license-badge

Implements dynamically sized types over stack allocated arrays.

  • The Vector trait exposes a generic trait for Vec-like operations.
  • ArrayVec implements a Vector interface over a fixed-size array.
  • SmallVec abstracts over a stack allocated ArrayVec, and falls back to a heap Vec upon overflow.
  • SmallDST holds a DST such as a closure or other types in a Vector.

Dependencies