Releases: tower120/any_vec
Releases · tower120/any_vec
v0.5.0
v0.4.0
v0.3.0
v0.2.2
v0.2.1
Optimized
- All remove operations become faster. Destructor function is not
called now, if type does not need drop.
Changed
AnyVec
is nowOption
-friendly. (by @SabrinaJewson)- It is now possible for
AnyVec
to have zero capacity. AnyVec::new()
now starts with zero capacity.
Fixed
- Fixed UB with construction with ZST. (by @SabrinaJewson)
- Fixed UB in
clear()
that happens if dropping panics. (by @SabrinaJewson) - as_mut_slice family now take
&mut self
instead of&self
. (by @SabrinaJewson)