mirror of
https://github.com/openharmony/third_party_rust_tinyvec.git
synced 2026-07-19 22:33:42 -04:00
1.8 KiB
1.8 KiB
Changelog
1.3.1
- Improved the performance of the
clone_frommethod pr 144
1.3.0
- jeffa5 added arbitrary implementations for
TinyVecandArrayVecpr 146. - elomatreb implemented
DoubleEndedIteratorforTinyVecIteratorpr 145.
1.2.0
- Cryptjar removed the
A:Arraybound on the struct ofArrayVec<A:Array>, and added thefrom_array_emptymethod, which is aconst fnconstructor pr 141.
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_innerso 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.