Explaining Atomics in Rust
Understanding atomics and the memory ordering options when dealing with them can help us better understand multithreaded programming and why Rust helps us write safe and performant multithreaded code. (more…)
Read more »Two years ago I started the cex project to support checked exceptions in Rust. After eating my own dog food, I’d like to share some thoughts – with little code and more like an essay. Checked exceptions provide code-as-documentation #[cex] pub fn foo()… Read more