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