What is the value of `count` after this template is instantiated as `Counter<int, double, char>`?template <typename... Ts> struct Counter { static constexpr std::size_t count = sizeof...(Ts); }; // Counter<int, double, char>::count