You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.2 KiB
1.2 KiB
Changelog
1.1.1
1.1.0
- slightlyoutofphase
added "array splat" style syntax to the
array_vec!
andtiny_vec!
macros. You can now writearray_vec![true; 5]
and get a length 5 array vec full oftrue
, just like normal array initialization allows. Same goes fortiny_vec!
. (pr 118) - not-a-seagull
added
ArrayVec::into_inner
so that you can get the array out of anArrayVec
. (pr 124)
1.0.2
- Added license files for the MIT and Apache-2.0 license options.
1.0.1
- Display additional features in the docs.rs/tinyvec documentation.
1.0.0
Initial Stable Release.