Explore >> Select a destination


You are here

www.foonathan.net
| | mklimenko.github.io
3.0 parsecs away

Travel
| | Every time I work with a C library, I miss the power and capability of the type system C++ provides. That's why I developed a simple C++17 header-only helper library to pack the multiple type-dependent C-style functions into single overload deduced at compile-time. No external libraries are required. Repo link: https://github.com/MKlimenko/plusifier. Currently, it's just the header and a compile-time test file, CMake integration coming soon.
| | www.fluentcpp.com
1.2 parsecs away

Travel
| | There is a particular case for default parameters: it's when their type is a template type. Read on to see how to get this right.
| | mpark.github.io
2.0 parsecs away

Travel
| | Can we work around the limitations of non-type template parameters?
| | www.cppstories.com
28.7 parsecs away

Travel
| What do you do when the code for a variable initialization is complicated? Do you move it to another method or write inside the current scope? In this blog post, I'd like to present a trick that allows computing a value for a variable, even a const variable, with a compact notation.