/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

eyakubovich.github.io
| | studiofreya.org
5.0 parsecs away

Travel
| | [AI summary] A C++11 variadic template example demonstrating perfect forwarding to wrap constructor calls for a structure.
| | baptiste-wicht.com
6.0 parsecs away

Travel
| | Variadic Templates C++11 introduced variadic template to the languages. This new feature allows to write template functions and classes taking an arbitrary number of template parameters. This a featur
| | www.foonathan.net
4.4 parsecs away

Travel
| | The size of std::array is known at compile-time given the type. Yet it only provides a regular .size() member function: template struct array { constexpr std::size_t size() const { return N; } }; This is annoying if you're writing generic code that expects some sort of compile-time sized range.
| | huonw.github.io
31.3 parsecs away

Travel
| An introduction to the low-level details of trait objects in the Rust programming language.