cpp-modern-features
Installation
SKILL.md
C++ Modern Features
Master modern C++ features from C++11 through C++23, including lambdas, move semantics, ranges, concepts, and compile-time evaluation. This skill enables you to write efficient, expressive, and maintainable modern C++ code.
C++11 Features
Auto Type Deduction
The auto keyword enables automatic type inference, reducing verbosity and
improving maintainability:
// Traditional
std::vector<int>::iterator it = vec.begin();
std::map<std::string, std::vector<int>>::const_iterator map_it = mymap.find("key");