https://github.com/dpc/rclist-rs
Rust library: `RcList` is read-only, append only list (log), that can share common tail (history) with other `RcList`-s.
https://github.com/dpc/rclist-rs
Last synced: 8 months ago
JSON representation
Rust library: `RcList` is read-only, append only list (log), that can share common tail (history) with other `RcList`-s.
- Host: GitHub
- URL: https://github.com/dpc/rclist-rs
- Owner: dpc
- Created: 2015-02-05T00:06:48.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-11T16:13:59.000Z (about 9 years ago)
- Last Synced: 2025-01-09T23:38:03.643Z (over 1 year ago)
- Language: Rust
- Size: 538 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/dpc/rclist-rs)
# rclist-rs
## Introduction
`RcList` is read-only, append-only list (log), that can share common tail (history) with other `RcList`.
Example:
HEAD-Y-\
1 -> 2 -> 3 -weak-> 4 -> 5
HEAD-X------/ /
HEAD-Z--------------------------
Lists Y, X, Z are sharing history. Link between 3 and 4 is weak, which means
after HEAD-Z is destroyed nodes 4 and 5 will be deallocated.
Read [Documentation](//dpc.github.io/rclist-rs/) for details.
See [issues](//github.com/dpc/rclist-rs/issues/) for TODO and BUGs.
## Building
cargo build