You are here |
www.foonathan.net | ||
| | | |
www.fluentcpp.com
|
|
| | | | Storing a reference to an lvalue or an rvalue in the same object has always been difficult in C++. With std::variant, it becomes simple. | |
| | | |
entangledlogs.com
|
|
| | | | 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... | |
| | | |
www.fluentcpp.com
|
|
| | | | Variadic templates allow any number of template parameters of any type. In this article we see how to do a variadic number of parameters of the SAME type. | |
| | | |
blog.darrien.dev
|
|
| | Whether you wanted to find out about object oriented Rust yourself, or you wanted to see why in the world I'm talking about object oriented rust, you are here. And so let us talk about object oriented Rust. Object oriented Rust is not so outlandish. Many folks think of Rust as a functional language, and while there are plenty of functional paradigms in Rust, many of those paradigms are also available to other languages in one way or another. |