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

0.1.3

Choose a tag to compare

@bodil bodil released this 15 Apr 16:20
· 124 commits to master since this release
0.1.3
8a37b58

ADDED

  • SparseChunk now has a default length of U64.
  • Chunk now has PartialEq defined for anything that can be borrowed as a slice.
  • SparseChunk<A> likewise has PartialEq defined for BTreeMap<usize, A> and HashMap<usize, A>. These are intended for debugging and aren't optimally `efficient.
  • Chunk and SparseChunk now have a new method capacity() which returns its maximum capacity (the number in the type) as a usize.
  • Added an entries() method to SparseChunk.
  • SparseChunk now has a Debug implementation.

FIXED

  • Extensive integration tests were added for Chunk and SparseChunk.
  • Chunk::clear is now very slightly faster.