|
You are here |
without.boats | ||
| | | | |
ericniebler.com
|
|
| | | | | TL;DR: "Structured concurrency" refers to a way to structure async computations so that child operations are guaranteed to complete before their parents, just the way a function is guaranteed... | |
| | | | |
probablydance.com
|
|
| | | | | C++20 added minimal support for coroutines. I think they're done in a way that really doesn't fit into C++, mostly because they don't follow the zero-overhead principle. Calling a coroutine can be very expensive (requiring calls to new() and delete()) in a way that's not entirely under your control, and they're designed to make it... | |
| | | | |
uraimo.com
|
|
| | | | | Discussions on how concurrency should be handled natively in Swift will soon start, new paradigms will be introduced and a swifty approach to concurrency will be defined. This article is an introduction to these topics, it could be useful if you plan to contribute to swift-evolution or even if you just want to experiment with something new using the recommended opensource libraries. | |
| | | | |
www.joshbeckman.org
|
|
| | | These are movies I've been watching. {% include ContributionGraph.html category="watching" %} {% assign postsByMonth = site.categories['watching'] | group_by_exp:"post", "post.date | date: '%Y %B'&... | ||