The C++ Core Guidelines Project
Bjarne Stroustrup
Morgan Stanley, Columbia University www.stroustrup.com
The C++ Core Guidelines Project Bjarne Stroustrup Morgan Stanley, - - PowerPoint PPT Presentation
The C++ Core Guidelines Project Bjarne Stroustrup Morgan Stanley, Columbia University www.stroustrup.com The big question What is good modern C++? Many people want to write Modern C++ What would you like your code to look
Morgan Stanley, Columbia University www.stroustrup.com
C++ Core Guidelines - Stroustrup - OSSF'19 3
C++ Core Guidelines - Stroustrup - OSSF'19
Caveat: work in progress
4
C++ Core Guidelines - Stroustrup - OSSF'19 5
C++ Core Guidelines - Stroustrup - OSSF'19 6
C++ Core Guidelines - Stroustrup - OSSF'19 7
C++ Core Guidelines - Stroustrup - OSSF'19 8
C++ Core Guidelines - Stroustrup - OSSF'19 9
C++ Core Guidelines - Stroustrup - OSSF'19 10
C++ Core Guidelines - Stroustrup - OSSF'19 11
C++ Core Guidelines - Stroustrup - OSSF'19 12
int a[100]; span s {a}; // note: template argument deduction for (auto x : s) // note: no range error, not nullptr check cout << x << '\n';
C++ Core Guidelines - Stroustrup - OSSF'19 13
Elements size
C++ Core Guidelines - Stroustrup - OSSF'19 14