@function
documentjs.tags.function
Specifies the comment is for a function. Use @param to specify the arguments of a function.
@function [NAME] [TITLE]
/**
* @function lib.Component.prototype.update update
* @parent lib.Component
*/
C.p.update = function(){
}
Parameters
-
NAME
{String}
OptionalThe name of the function. It should be supplied if it can not be determined from the code block following the comment.
-
TITLE
{String}
OptionalThe title to be used for display purposes.
Code Matching
The
@function
type can be infered from code like the following: