2 releases

Uses old Rust 2015

0.1.1 Mar 30, 2015
0.1.0 Feb 27, 2015

#11 in #occurs

Download history 8/week @ 2023-11-27 1/week @ 2023-12-04 5/week @ 2023-12-11 13/week @ 2023-12-18 2/week @ 2023-12-25 13/week @ 2024-01-08 6/week @ 2024-01-15 4/week @ 2024-02-05 10/week @ 2024-02-12 33/week @ 2024-02-19 28/week @ 2024-02-26 24/week @ 2024-03-04 30/week @ 2024-03-11

117 downloads per month
Used in 3 crates

LGPL-3.0+

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.

No runtime deps