C++ Links: Unterschied zwischen den Versionen

Aus Wiki
Zur Navigation springen Zur Suche springen
(→‎Functional Programming: Nifty Fold Expression Tricks)
(std::ref and std::reference_wrapper: common use cases)
Zeile 82: Zeile 82:
* [https://www.fluentcpp.com/2019/09/24/expressive-code-for-state-machines-in-cpp/ typestates for expressive code]
* [https://www.fluentcpp.com/2019/09/24/expressive-code-for-state-machines-in-cpp/ typestates for expressive code]
* [https://www.fluentcpp.com/2020/01/03/dry-comparisons-a-c-library-to-shorten-redundant-if-statements/ Simultaneous comparisons via private inheritance from tuple]
* [https://www.fluentcpp.com/2020/01/03/dry-comparisons-a-c-library-to-shorten-redundant-if-statements/ Simultaneous comparisons via private inheritance from tuple]
== Pointers and References ==
* [https://www.nextptr.com/tutorial/ta1441164581/stdref-and-stdreference_wrapper-common-use-cases std::ref and std::reference_wrapper: common use cases]


== Optimization ==
== Optimization ==

Version vom 2. August 2020, 21:36 Uhr

Concurrency

Exceptions and Transactional Operations

Containers

Tuples

Variants

Boost Multiindex

Regular Expressions

  • The Regular Expression Library Part 1, 2

Iterators

Functional Programming

Coroutines

Types

Concepts

Random

Metaprogramming

CRTP

Covariance, Contravariance, Invariance

Lambdas

Methods / Patterns

Pointers and References


Optimization

Network