Reworked a lot of the underlying API to add a Buffers
type argument. This lets users customise how items are stored internally, allowing them to choose between dynamic allocation (Vec
) and the stack (ArrayVec
).
It also greatly improves the documentation, providing more examples and explanations for the various concepts.