This repository was archived by the owner on May 3, 2026. It is now read-only.
0.2.0
CHANGED
- The
capacity()method has been replacied with aCAPACITYconst on each type.
ADDED
- There is now a
RingBufferimplementation, which should be nearly a drop-in replacement forSizedChunkbut is always O(1) on push and cannot be dereferenced to slices (but it has a set of custom slice-like implementations to make that less of a drawback). - The
Drainiterator forSizedChunknow implementsDoubleEndedIterator.
FIXED
SizedChunk::drain_from_front/backwill now always panic if the iterator underflows, instead of only doing it in debug mode.