mirror of https://github.com/rust-lang/nomicon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
295 B
8 lines
295 B
8 years ago
|
# Implementing Arc and Mutex
|
||
10 years ago
|
|
||
10 years ago
|
Knowing the theory is all fine and good, but the *best* way to understand
|
||
10 years ago
|
something is to use it. To better understand atomics and interior mutability,
|
||
4 years ago
|
we'll be implementing versions of the standard library's `Arc` and `Mutex` types.
|
||
10 years ago
|
|
||
4 years ago
|
TODO: Write `Mutex` chapters.
|