nolock 0.4.1

A collection of Lock-Free Datastructures
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Provides  Multi-Producer-Multi-Consumer Queues
//!
//! # Reference
//! * [A Scalable, Portable, and Memory-Efficient Lock-Free FIFO Queue](https://arxiv.org/pdf/1908.04511.pdf)

mod queue;

pub mod bounded;
#[cfg(feature = "hyaline")]
#[cfg_attr(docsrs, doc(cfg(feature = "hyaline")))]
pub mod unbounded;