atomic_list 2.0.0

Lock-free circular ring of intrusive ref-counted nodes plus shared cursors.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

pub type OptNode<T> = Option<sync::Node<T>>;

pub mod atm_p;
pub mod cursor;
pub mod sync;

#[cfg(test)]
mod tests;