I found the following code in a cpp files of the ImGui library. What does this signature mean in C++ please:
void ImGui::Text(const char* fmt, ...);
Is this a type of parameter pack which looks different:
template<class... Args>
void op(Args... args);