dlv-list 0.2.1

Semi-doubly linked list implemented using a vector
Documentation
# 0.2.1


 - Reduce memory size of `VecList` from 96 bytes to 64. Tradeoff is max capacity is now reduced by
   1 and a very slight performance decrease.

# 0.2.0


 - Change `VecList::retain` to give mutability to entries.

# 0.1.5


 - Add unsafe removal function `VecList::remove_sync`. See its documentation for details.

# 0.1.4


 - Remove unnecessary `Debug` bounds.

# 0.1.3


 - Fix possible overflow when incrementing generation.
 - Fix underflow when calling `pack_to_fit` on an empty `VecList`.

# 0.1.2


 - Make iterator `iter` functions public.

# 0.1.1


 - Iterator optimizations.

# 0.1.0


 - Initial release.