coco 0.2.1

Concurrent collections
Documentation

Concurrent collections

Build Status License Cargo Documentation

This crate offers several collections that are designed for performance in multithreaded contexts. They can be freely shared among multiple threads running in parallel, and concurrently modified without the overhead of locking.

The following collections are available:

  • Stack: A lock-free stack.
  • deque: A lock-free work-stealing deque.