Explore >> Select a destination


You are here

ben.bolte.cc
| | tannerdolby.com
7.7 parsecs away

Travel
| | For a fixed-size array (non-dynamic), calculating the size can seem complicated but it's really quite simple when we think about how the sizeof operator works.
| | hackingcpp.com
8.2 parsecs away

Travel
| | Basic techniques and tools for ensuring correctness: compiler warnings (gcc/clang/MSVC), assertions (assert/static_assert) and testing (with some doctest examples).
| | ddanilov.me
5.8 parsecs away

Travel
| | Tips on how to make your compiler strictly follow the C++ standard
| | entangledlogs.com
32.8 parsecs away

Travel
| Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...