C++ Links: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Claas (Diskussion | Beiträge) (→Types: strong_typedef) |
Claas (Diskussion | Beiträge) (The Regular Expression Library) |
||
Zeile 19: | Zeile 19: | ||
* [https://schneide.wordpress.com/2018/01/11/c17-the-two-line-visitor-explained/ The two line visitor explained] | * [https://schneide.wordpress.com/2018/01/11/c17-the-two-line-visitor-explained/ The two line visitor explained] | ||
* [https://arne-mertz.de/2018/06/functions-of-variants-are-covariant/ Functions of Variants are Covariant] | * [https://arne-mertz.de/2018/06/functions-of-variants-are-covariant/ Functions of Variants are Covariant] | ||
== Regular Expressions == | |||
* The Regular Expression Library [http://www.modernescpp.com/index.php/regular-expressions Part 1] | |||
=== Boost Multiindex === | === Boost Multiindex === |
Version vom 7. August 2019, 08:29 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
Regular Expressions
- The Regular Expression Library Part 1
Boost Multiindex
Iterators
Functional Programming
Coroutines
Types
- Strong typedefs
- strong_typedef by Anthony Williams
- ADL
- lvalues, rvalues, glvalues, prvalues, xvalues, help
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