Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.

0.2.0

Choose a tag to compare

@bodil bodil released this 15 Apr 16:20
· 118 commits to master since this release
0.2.0
c0218a6

CHANGED

  • The capacity() method has been replacied with a CAPACITY const on each type.

ADDED

  • There is now a RingBuffer implementation, which should be nearly a drop-in replacement for SizedChunk but 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 Drain iterator for SizedChunk now implements DoubleEndedIterator.

FIXED

  • SizedChunk::drain_from_front/back will now always panic if the iterator underflows, instead of only doing it in debug mode.