This book is sequel to the first volume Advanced C++ FAQs : Volume 1 : Fundamentals. It assumes that the reader is aware of the basics of C++98 and C++03 and wants to expand her horizon to latest and greatest in the present and future of C++, including C++11 and C++1y(aka C++14). It contains selected generic programming problems with detailed solutions to all of these which will help the reader to hone her skills to solve a particular problem. The problems are marked on a scale of one(*)(simplest) to five stars(*****)(hardest).
C++14 1.1 variable templates
1.2 Constexpr static data members of class templates
1.3 constexpr function templates
1.4 variable templates in action
1.5 static data member template
1.6 specialization of variable template
1.7 default argument and specialization of variable template 1.8 lambda and variable template
1.9 variable templates variables vary
1.10 auto variable templates
1.11 valid specialization but error ?
1.12 variable templates and lambda revisited
1.13 Incremental improvement to integral constant
1.14 is same musings
1.15 auto variable template and generic lambda
1.16 constexpr member functions and implicit const
1.17 constexpr constructor and initialization
...
1.23 deprecated attribute
1.24 Member initializers and aggregate class
1.25 Member initializers and aggregate array
1.26 Data Member initializers
1.27 time duration literals
1.28 Expressing pi multiplication
1.29 Compile Time binary Literal Operator
1.30 Square Literal Operator
1.31 Type Transformation Aliases
1.32 unique ptr vs make unique as function argument
1.33 make unique as perfect forwarding guy
...
1.37 make unique and default initialization
1.38 make unique and array T[n]
1.39 make unique and array T[]
1.40 make unique and default initialization with T[]
1.41 Extend make unique : Support list initialization T[]