Explore >> Select a destination


You are here

ericniebler.com
| | entangledlogs.com
10.3 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...
| | herbsutter.com
22.1 parsecs away

Travel
| | On Saturday, the ISO C++ committee completed the third-last design meeting of C++26, held in Wroc?aw, Poland. There are just two meetings left before the C++26 feature freeze in June 2025, and C++26 is on track to be completed two more meetings after that in early 2026. Implementations are closely tracking draft C++26; GCC and...
| | brevzin.github.io
14.0 parsecs away

Travel
| | Let's say we had a range, represented by a pair of pointers, that we wanted to copy into another pointer. We might write that like so:
| | www.cppstories.com
52.2 parsecs away

Travel
| Mister C was a cool guy. C could make amazing things with just ordinary text files. He used to grab bunch of them and produce magic binary forms. He could make aspinningcube, web server, or even an operating system. One time he was running through a plain header file.