avec 0.1.0

[WIP, keep away] Atomic Vector for concurrent reads / writes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This crate provides a vector supporting multiple non-overlapping writers
//! or multiple readers.
//!
//! Developed for radiant-rs and **currently not suitable for general purpose use**!

mod avec;

pub use avec::{AVec, AVecReadGuard, AVecMapGuard};

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
    }
}