ArcMutex
A rust library for making creating Arc<Mutex<T>>s more convenient.
Defines the ArcMutex<T> type alias and the arcmutex( expr) function.
Contributions welcome! :)
Author: Kurotetsuka
License: MIT
Example
extern crate arcmutex;
use ;
let a : = arcmutex;
let mut b = a.lock.unwrap;
*b += 1;
println!;