Closure captures
There have been some discussions on how to make closure captures more ergonomic. For a background on motivation and a discusson on what I perceive to be the current way forward I recommend reading this blog post.
Random thoughts.
There have been some discussions on how to make closure captures more ergonomic. For a background on motivation and a discusson on what I perceive to be the current way forward I recommend reading this blog post.
When talking about alternatives to C and C++, Rust is often mentioned. Rust is considered a safer alternative that can prevent both memory and threading issues. In discussions it is fairly common to hear that safe Rust does not exhibit undefined behaviour, which then leads to safer and more correct code. As an escape hatch Rust has the unsafe keyword, with the intention that unsafe is used to…