appendvec 0.1.1

A concurrent append-only container of immutable values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# AppendVec: a concurrent append-only container of immutable values

[![Crate](https://img.shields.io/crates/v/appendvec.svg?logo=rust)](https://crates.io/crates/appendvec)
[![Documentation](https://img.shields.io/docsrs/appendvec/0.1.1?logo=rust)](https://docs.rs/appendvec/0.1.1/)
[![Minimum Rust 1.85.0](https://img.shields.io/crates/msrv/appendvec/0.1.1.svg?logo=rust&color=orange)](https://releases.rs/docs/1.85.0/)
[![Lines of Code](https://www.aschey.tech/tokei/github/gendx/appendvec?category=code&branch=0.1.1)](https://github.com/gendx/appendvec/tree/0.1.1)
[![Dependencies](https://deps.rs/crate/appendvec/0.1.1/status.svg)](https://deps.rs/crate/appendvec/0.1.1)
[![License](https://img.shields.io/crates/l/appendvec/0.1.1.svg)](https://github.com/gendx/appendvec/blob/0.1.1/LICENSE)
[![Codecov](https://codecov.io/gh/gendx/appendvec/branch/0.1.1/graph/badge.svg)](https://app.codecov.io/gh/gendx/appendvec/tree/0.1.1)
[![Build Status](https://github.com/gendx/appendvec/actions/workflows/build.yml/badge.svg?branch=0.1.1)](https://github.com/gendx/appendvec/actions/workflows/build.yml)
[![Test Status](https://github.com/gendx/appendvec/actions/workflows/tests.yml/badge.svg?branch=0.1.1)](https://github.com/gendx/appendvec/actions/workflows/tests.yml)

This container data structure ensures that reads return stable references and
can happen concurrently to a write.