%namespace file="template.util.html" name="util" />
${name}
${name}
% if doc:
${doc}
% endif
% if len(members):
Members
% for m in members:
-
${util.type(m["type"])} ${m["name"]}
% if "doc" in m:
— ${m["doc"]}
% endif
% endfor
% endif
% if len(methods):
Methods
% for i, m in enumerate(methods):
- ${util.func(m, "#"+str(i) if "doc" in m else None)}
% endfor
% endif
% for i, m in enumerate(methods):
% if "doc" in m:
${util.func(m)}
${m["doc"]}
% if len(m["arguments"]):
% for a in m["arguments"]:
% if "doc" in a and a["doc"]:
-
${util.type(a["type"])} ${a["name"]} — ${a["doc"]}
% endif
% endfor
% endif
% if "doc" in m["return"]:
Returns ${util.type(m["return"]["type"])}: ${m["return"]["doc"]}
% endif
% endif
% endfor