C++ Links: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Claas (Diskussion | Beiträge) (→Methods / Patterns: Named Arguments) |
Claas (Diskussion | Beiträge) (→Types: values) |
||
Zeile 37: | Zeile 37: | ||
* [https://foonathan.github.io/blog/2016/10/19/strong-typedefs.html Strong typedefs] | * [https://foonathan.github.io/blog/2016/10/19/strong-typedefs.html Strong typedefs] | ||
* [https://abseil.io/tips/49 ADL] | * [https://abseil.io/tips/49 ADL] | ||
* [https://accu.org/index.php/journals/2641 lvalues, rvalues, glvalues, prvalues, xvalues, help] | |||
== Random == | == Random == |
Version vom 11. April 2019, 10:54 Uhr
Concurrency
Exceptions and Transactional Operations
Containers
Tuples
Variants
- Polymorphism using variant
- Visiting variants using lambdas
- Polymorphism-polymorphism
- The two line visitor explained
- Functions of Variants are Covariant
Boost Multiindex
Iterators
Functional Programming
Coroutines
Types
Random
Metaprogramming
- Size of an array (another way)
- static_if
- Deep copy using a polymorphic wrapper
- A customizable framework
- Zero overhead currying
CRTP
Covariance, Contravariance, Invariance
Lambdas
- Composing Lambdas in C++14 -- and Functions
- Capturing perfectly-forwarded objects in lambdas
- Fun with lambdas (part 1)
- Lambda story part 1
Methods / Patterns
- C++ Special Member Function Guidelines
- C++ Named Arguments
- The Pimpl Pattern - what you should know
- It all comes down to respecting levels of abstraction
- The expression problem