2 releases

Uses old Rust 2015

0.1.1 Mar 30, 2015
0.1.0 Feb 27, 2015

#18 in #occurs

Download history 3/week @ 2024-11-13 13/week @ 2024-11-20 14/week @ 2024-11-27 20/week @ 2024-12-04 49/week @ 2024-12-11 13/week @ 2024-12-18 6/week @ 2025-01-01 9/week @ 2025-01-08 24/week @ 2025-01-15 13/week @ 2025-01-22 16/week @ 2025-01-29 35/week @ 2025-02-05 34/week @ 2025-02-12 13/week @ 2025-02-19 23/week @ 2025-02-26

108 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