An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/dpc/hex2d-rs.svg?branch=master)](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