https://github.com/azdavis/nawa
a rope data structure
https://github.com/azdavis/nawa
Last synced: about 2 months ago
JSON representation
a rope data structure
- Host: GitHub
- URL: https://github.com/azdavis/nawa
- Owner: azdavis
- Created: 2021-11-14T00:45:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-14T00:46:03.000Z (over 3 years ago)
- Last Synced: 2025-01-28T03:29:23.183Z (4 months ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# nawa
A simple implementation of a generic [rope][1] data structure.
"Simple" means there is no effort made to balance the internal binary trees, so
performance will probably suffer accordingly for pathological workloads."Generic" means it contain any element type, not just characters as is
conventional for string ropes.[1]: https://en.wikipedia.org/wiki/Rope_(data_structure)