- Remove ability to customize vector growth rate.
- Remove
_exn
suffix from throwing APIs, and addtry_
prefix to their non-throwing versions. - Add unsafe versions of
to_array
andof_array
that don't perform any copying. - Move the contents of
Vec.Let_syntax
intoVec.Infix
.
- Revise most type signatures to have consistent permission requirements.
- Add APIs for inserting/removing elements at a specific index.
- Add new APIs for clearing, filtering, comparing, and pretty-printing vectors.
- Rename
any
toexists
andall
tofor_all
to be consistent withStdlib
naming. - Remove unsafe
steal
APIs.
- Initial release.