gecko-dev/third_party/rust/coco
2017-10-24 17:55:24 +00:00
..
benches
ci
src
.cargo-checksum.json No bug - Revendor rust dependencies 2017-10-24 17:55:24 +00:00
.travis.yml
Cargo.toml
CHANGELOG.md
LICENSE-APACHE
LICENSE-MIT
README.md

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.