2 releases

Uses old Rust 2015

0.1.1 Mar 30, 2015
0.1.0 Feb 27, 2015

#14 in #occurs

Download history 30/week @ 2024-03-11 24/week @ 2024-03-18 31/week @ 2024-03-25 78/week @ 2024-04-01 14/week @ 2024-04-08 24/week @ 2024-04-15 24/week @ 2024-04-22 22/week @ 2024-04-29 24/week @ 2024-05-06 19/week @ 2024-05-13 25/week @ 2024-05-20 15/week @ 2024-05-27 22/week @ 2024-06-03 18/week @ 2024-06-10 15/week @ 2024-06-17 21/week @ 2024-06-24

79 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