Questions tagged [doxygen]
Doxygen is a multi-language documentation generation application for C++, C, Java, Objective-C, Python, IDL, Fortran, VHDL, PHP and C# that supports a wide variety of output formats including RTF, HTML, XML and PDF.
1 question
5
votes
4
answers
4k
views
static_vector: a vector with stack storage
In many cases, we want a variable-size array like std::vector, but we know an upper limit on the size. In such cases, the vector can be allocated on the stack. We ...