C++ Links: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Methods / Patterns: C++ Special Member Function Guidelines) |
Claas (Diskussion | Beiträge) (→Tuples: STL Algorithms on Tuples) |
||
Zeile 11: | Zeile 11: | ||
* [http://vitiy.info/named-tuple-for-cplusplus/ Named Tuple] | * [http://vitiy.info/named-tuple-for-cplusplus/ Named Tuple] | ||
* [https://medium.com/@matt.aubury/rip-index-sequence-2014-2017-9cc854aaad0 Use apply on tuple as map-reduce (RIP index_sequence)] | * [https://medium.com/@matt.aubury/rip-index-sequence-2014-2017-9cc854aaad0 Use apply on tuple as map-reduce (RIP index_sequence)] | ||
* [https://www.fluentcpp.com/2019/03/08/stl-algorithms-on-tuples/ STL Algorithms on Tuples] | |||
=== Variants === | === Variants === |
Version vom 14. März 2019, 16:42 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
- The Pimpl Pattern - what you should know
- It all comes down to respecting levels of abstraction
- The expression problem