orx-concurrent-queue 1.2.0

A high performance and convenient thread safe queue that can concurrently grow and shrink with push, extend, pop and pull capabilities.
Documentation
1
2
3
4
5
6
7
mod iter_of_mut;
mod iter_of_ref;
mod iter_owned;

pub(crate) use iter_of_mut::QueueIterOfMut;
pub(crate) use iter_of_ref::QueueIterOfRef;
pub use iter_owned::QueueIterOwned;