All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- The consuming iterator no longer needlessly clones the underlying vec.
- Added a drop handler type parameter, allowing overriding the drop handler implementation for deeply recursive usages.
- Added a growth factor to the generic list implementation, allowing for subsequent nodes to grow exponentially. This creates a VList implementation on top of the existing unrolled linked list implementation.
- Changed the internal representation to use the new GAT feature. No longer need to do so many layers of indirection
- Added the capacity as a const generic. You can now pick the maximum size of any individual node in the unrolled linked list