2 releases
Uses old Rust 2015
0.1.1 | Mar 30, 2015 |
---|---|
0.1.0 | Feb 27, 2015 |
#14 in #occurs
79 downloads per month
Used in 3 crates
14KB
273 lines
#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.