gapbuffer 0.1.1

A gap buffer in Rust.
Documentation
  • Coverage
  • 87.5%
    14 out of 16 items documented0 out of 15 items with examples
  • Size
  • Source code size: 13.7 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.53 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • withoutboats/gapbuffer
    16 4 3
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • withoutboats

#GapBuffer

This library implements a gapbuffer, a dynamic array in which the unused portion of the array is shifted on insertion & removal. This optimizes for insertions and removals which could occur at any point in the file but tend to occur in localized clusters.

It is currently implemented with a backing RingBuf.