Automatic Flamegraphs for Benchmarks in Rust
This is just a short post about something I recently discovered in the Rust ecosystem: (more…)
Read more »
Rusts type system requires that there only ever is one mutable reference to a value or one or more shared references. What happens when you need multiple references to some value, but also need to mutate through them? We use a trick called interor mutabil… Read more