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>