appendix-a
Appendix A. Further Resources
This contains a list of resources mentioned in each chapter for ease of reference
Chapter 1
- https://isocpp.org/std gives some details on working group 21 (WG21) of the International Organization for Standardization (ISO)
- The IncludeCpp group have a discord server and often have a stall at conferences. See https://www.includecpp.org/
- The ISOCpp website has a FAQ section (https://isocpp.org/wiki/faq) which gives an overview of some recent C++ changes and big picture questions.
- CppInsights (https://cppinsights.io/) transforms code showing us how range based for loops and more besides might be implemented
- Matt Godbolt’s Compiler Explorer (https://godbolt.org/) supports a huge variety of different compilers, allowing you to see how each behaves without install them.
- CppReference has a list of compiler support for each of the new features: https://en.cppreference.com/w/cpp/compiler_support)
Chapter 2