crossync 0.1.2

A fast concurrent programming suite for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod hashmap;
mod vec;
mod cell;
mod buffer;
mod array;
mod atomic;

pub use hashmap::AtomicHashMap;
pub use vec::AtomicVec;
pub use cell::AtomicCell;
pub use buffer::AtomicBuffer;
pub use array::AtomicArray;
pub use atomic::Atomic;