Daily bit(e) of C++ | parameter pack
Daily bit(e) of C++ #328, Representing any number of template arguments with a parameter pack.
A parameter pack (C++11) is a template parameter that can represent any number of template arguments.
Without fold expressions (C++17), we have limited options for manipulating a parameter pack.