peace-lock 0.1.3

A zero-cost abstraction lock that helps check contention free algorithms.
Documentation
1
2
3
4
5
mod mutex;
mod rwlock;

pub use mutex::{Mutex, MutexGuard};
pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};