Turon: Fearless Concurrency with Rust
Turon: Fearless Concurrency with Rust
[Development] Posted Apr 10, 2015 17:54 UTC (Fri) by corbet
Aaron Turon has posted a
lengthy introduction to concurrency in the Rust programming language.
"Every data type knows whether it can safely be sent between or
accessed by multiple threads, and Rust enforces this safe usage; there are
no data races, even for lock-free data structures. Thread safety isn't just
documentation; it's law.
"