[go: up one dir, main page]

coco 0.3.3

Concurrent collections
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Concurrent collections

[![Build Status](https://travis-ci.org/stjepang/coco.svg?branch=master)](https://travis-ci.org/stjepang/coco)
[![License](https://img.shields.io/badge/license-Apache--2.0%2FMIT-blue.svg)](https://github.com/stjepang/coco)
[![Cargo](https://img.shields.io/crates/v/coco.svg)](https://crates.io/crates/coco)
[![Documentation](https://docs.rs/coco/badge.svg)](https://docs.rs/coco)

**This is an experimental crate that will be soon deprecated in favor of Crossbeam.**

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.