#summary The @param tag == Usage == @param [{[_optional_] [_type_]}] paramName [_description_] == Description == Parameter of a function or constructor. Name of parameter could be optionally prefixed with parameter type in curly braces and/or indicator whether the parameter is optional. Parameter declaration could be followed by optional description of that parameter. There could be multiple entries for @param tags in the same function/constructor. == Example == {{{ /** * Sets count of foos in a bar. * @function setFooCount @param {optional int} pCount - number of foos to set */ }}} == Details == || Since || v1.0 ||