Is it possible to group function parameters in Doxygen documentation so that I don’t have to duplicate the comment? For example I want something like:
/**
<...>
@param {{a, b}} <long documentation>
*/
Doxygen output:
<...>
Parameters:
a,b - <long documentation>
Yes, you can just pass a comma separated list of parameters with @param, like so:
And it will appear in the output as you would expect.