An open API service indexing awesome lists of open source software.

https://github.com/williamzhang20/modern-cpp-notes

Notes on modern C++ attributes
https://github.com/williamzhang20/modern-cpp-notes

coroutines memory-pool sfinae smart-pointers type-erasure

Last synced: 4 days ago
JSON representation

Notes on modern C++ attributes

Awesome Lists containing this project

README

          

# Modern C++ Notes

A collection of carefully documented notes on various attributes of modern C++.

This list includes categories such as:
- Smart Pointers
- Move Semantics
- Template Metaprogramming (type traits, SFINAE)
- Concurrency Organization and Synchronization
- Functional Paradigms (e.g. lambdas, functional templates)
- Memory Management, e.g. memory pools, rvalues/lvalues, RAII

Overall, am following [this](https://federico-busato.github.io/Modern-CPP-Programming/) amazing FREE guide.

At the same time, I'll add detailed code annotations explaining the expected output, especially the reasons behind the observed behavior.