arcmutex 0.1.1

A convenience library for working with `Arc<Mutex<T>>`s
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## ArcMutex
A rust library for making working with `Arc<Mutex<T>>`s more convenient.  
Defines the `ArcMutex<T>` type alias and the `arcmutex!( expr)` macro.

Contributions welcome! :)

Author: [Kurotetsuka](https://github.com/kurotetsuka)  
License: [MIT](
	https://github.com/kurotetsuka/hyphaelia/blob/master/legal/mit.md)

### Example
```rust
let a : ArcMutex< u8> = arcmutex!( 0);
let mut b = a.lock().unwrap();
*b += 1;
println!( "a: {}", *b);
```