]> git.proxmox.com Git - rustc.git/blob - src/doc/nomicon/arc-and-mutex.md
New upstream version 1.16.0+dfsg1
[rustc.git] / src / doc / nomicon / arc-and-mutex.md
1 % Implementing Arc and Mutex
2
3 Knowing the theory is all fine and good, but the *best* way to understand
4 something is to use it. To better understand atomics and interior mutability,
5 we'll be implementing versions of the standard library's Arc and Mutex types.
6
7 TODO: ALL OF THIS OMG