C++ Links: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Claas (Diskussion | Beiträge) (Wangle) |
Claas (Diskussion | Beiträge) (Links added) |
||
Zeile 1: | Zeile 1: | ||
== Exceptions == | == Exceptions == | ||
[http://arne-mertz.de/2016/01/modern-c-features-keyword-noexcept/ How to use noexcept] | * [http://arne-mertz.de/2016/01/modern-c-features-keyword-noexcept/ How to use noexcept] | ||
== Tuples == | == Tuples == | ||
[http://vitiy.info/named-tuple-for-cplusplus/ Named Tuple] | * [http://vitiy.info/named-tuple-for-cplusplus/ Named Tuple] | ||
== Random == | |||
* [http://www.elbeno.com/blog/?p=1318 Random Lame List] | |||
== Metaprogramming == | |||
* [http://brnz.org/hbr/?p=1491 Size of an array (another way)] | |||
* [http://stackoverflow.com/a/34591044/3876684 static_if] | |||
* [http://blog.therocode.net/2016/01/copyable-polymorphic-wrapper Deep copy using a polymorphic wrapper] | |||
* [https://akrzemi1.wordpress.com/2016/01/16/a-customizable-framework/ A customizable framework] | |||
== Network == | == Network == | ||
[https://medium.com/hacker-daily/writing-high-performance-servers-in-modern-c-7cd00926828 Writing modern C++ servers using Wangle] | * [https://medium.com/hacker-daily/writing-high-performance-servers-in-modern-c-7cd00926828 Writing modern C++ servers using Wangle] |
Version vom 28. Januar 2016, 22:51 Uhr
Exceptions
Tuples
Random
Metaprogramming
- Size of an array (another way)
- static_if
- Deep copy using a polymorphic wrapper
- A customizable framework