gapbuffer icon indicating copy to clipboard operation
gapbuffer copied to clipboard

GapBuffer data structure in Rust.

Results 5 gapbuffer issues
Sort by recently updated
recently updated
newest added

I've just realised that there's no LICENSE here. The [crates.io page](https://crates.io/crates/gapbuffer) states that it is LGPL-3.0+, but there's no LICENSE file in the repo. Any objections to me submitting a...

Hi there, I'm lookin' at using gapbuffer for my text editor project, and I think it would be great to have a section in the README that explains the basic...

See also #11. We may not need both this PR and #11, but with the lack of normal slicing behavior the usual `DoubleEndedIterator` approach to reverse iterators doesn't quite work....

This makes `Items` also implement `DoubleEndedIterator`, allowing traversal backwards from the end of the buffer. Specifically, `gapbuffer.iter().rev()` should now work as expected.