/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

preshing.com
| | www.internalpointers.com
4.3 parsecs away

Travel
| | ...and why it matters when writing lock-free multithreading code.
| | blog.kylehuey.com
5.8 parsecs away

Travel
| | Today I published lazy-init, a Rust crate that scratches an itch I've had for a while. lazy-init is designed for when: you want to do some work (a computation, disk I/O, etc) lazily, the product of...
| | reitzen.com
8.0 parsecs away

Travel
| |
| | tmandry.gitlab.io
28.9 parsecs away

Travel
| For just about as long as I've been working on async Rust, the topic of scoped tasks has come up. These areasync tasks that borrow from their environment, and they would come in handy in a lot of situations. Last year the standard library stabilized thread::scope which allows synchronous threads to do this. You could imagine a similar API, but with async: asyncfn fanout(data: &Vec){task::scope(|s|{// Spawn subtasks to run in parallel.