--- layout: documentation title: ${module.title} ---

${module.title}

${module.documentation} #if (!$module.methods.isEmpty())

Methods

#end #foreach ($method in $module.methods) #if ($method.documented())

${method.name}

#if (!$method.signature.isEmpty())

${method.signature}

#end ${method.documentation} #if (!$method.params.isEmpty())

Parameters

#foreach ($param in $method.params) #end
Parameter Description
${param.name} #if (!$param.type.isEmpty())

${param.type}

#end

${param.documentation}

#end ${method.returnTypeExtraMessage} #end #end