may_queue 0.1.16

May's internal queue library
Documentation
#![cfg_attr(all(nightly, test), feature(test))]

mod atomic;

pub mod mpsc_seg_queue;
pub mod seg_queue;
pub mod tokio_queue;

pub mod mpmc_bounded;
pub mod mpsc;
pub mod mpsc_list;
pub mod mpsc_list_v1;
pub mod spmc;
pub mod spsc;
pub mod unordered_mpsc;

#[cfg(test)]
mod test_queue {
    pub trait ScBlockPop<T> {
        fn block_pop(&self) -> T;
    }
}