Rust makes Rayon’s data parallelism magical

The Rayon data parallelism library makes it easy to run your code in parallel—but the real magic comes from tools in the Rust programming language. Read more

Similar

Fast Rust Builds

It's common knowledge that Rust code is slow to compile. But I have a strong gut feeling that most Rust code out there compiles much slower than it could. (more…)

Read more »

Implementing a type-safe printf in Rust

I show how to use heterogeneous lists and traits to implement a type-safe printf in Rust. These mechanisms can ensure that two variadic argument lists share important properties, like the number of format string holes matches the number of printf argument... (more…)

Read more »