/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

blog.knatten.org
| | ericniebler.com
5.2 parsecs away

Travel
| | At GoingNative back in September, Andrei Alexandrescu posed an interesting question about API design and C++11 that has had me scratching my head for a month. It was about the design of std::getlin...
| | www.foonathan.net
3.5 parsecs away

Travel
| | When C++11 introduced move semantics, it also added two important helper functions: std::move and std::forward. They are essential when you want to manually indicate that you no longer care about an object or need to propagate the value category in generic code. As such, Ive used them countless times in the past. However, they are functions. Plain, old, standard library functions. This is problematic for multiple reasons.
| | www.kuniga.me
4.3 parsecs away

Travel
| | NP-Incompleteness:
| | huonw.github.io
28.8 parsecs away

Travel
| Closures in Rust are powerful and flexible, building on traits, generics and ownership.