Explore >> Select a destination


You are here

www.kuniga.me
| | thasso.xyz
4.7 parsecs away

Travel
| | My personal blog about things I find interesting. Hit me up!
| | pagefault.blog
1.6 parsecs away

Travel
| | C++11 move semantics can be a source of misunderstandings if the mechanics are not understood. This post clears up the most common one.
| | hellocplusplus.com
1.8 parsecs away

Travel
| | Learn the basics of C++ move semantics and how to use this language feature. This article is useful for programmers of all skill levels.
| | entangledlogs.com
22.1 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...