Explore >> Select a destination


You are here

akrzemi1.wordpress.com
| | cukic.co
3.3 parsecs away

Travel
| | Author of the 'Functional Programming in C++' book, KDE developer and Free/Libre Software enthusiast.
| | www.cppstories.com
2.0 parsecs away

Travel
| | For C++17 everyone wanted to have concepts, and as you know, we didn't get them. But does it mean C++17 doesn't improve templates/template meta-programming? Far from that! In my opinion, we get excellent features. Read more for details. Intro Do you work a lot with templates and meta-programming? With C++17 we get a few nice improvements: some are quite small, but also there are notable features as well!
| | mpark.github.io
3.4 parsecs away

Travel
| | Can we work around the limitations of non-type template parameters?
| | entangledlogs.com
28.0 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...