try_
functions for fallable reallocation. pr 158TryFromSliceError
. pr 160std
feature now automatically enables the alloc
feature as well.TinyVec
when the element type is u8
. This is gated behind the new std
feature. pr 152clone_from
method pr 144TinyVec
and ArrayVec
pr 146.DoubleEndedIterator
for TinyVecIterator
pr 145.A:Array
bound on the struct of ArrayVec<A:Array>
, and added the from_array_empty
method, which is a const fn
constructor pr 141.array_vec!
and tiny_vec!
macros. You can now write array_vec![true; 5]
and get a length 5 array vec full of true
, just like normal array initialization allows. Same goes for tiny_vec!
. (pr 118)ArrayVec::into_inner
so that you can get the array out of an ArrayVec
. (pr 124)Initial Stable Release.