{{ tplData.name }}

{% if tplData.ancestors|length %}
extends: {% for a in tplData.ancestors %} {{ a }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
implemented in {% ifequal tplData.files|length 1 %} {% for f in tplData.files %} {{ f.name }} {% endfor %} {% else %} {{ tplData.files|length }} files {% endifequal %}
{{ tplData.shortDescription }}
{{ tplData.description|markdown }}
{% if tplData.examples|length %}

Examples

{% for e in tplData.examples %}

Example {{ forloop.counter }}:

{{ e }}
{% endfor %}
{% endif %} {% if tplData.sortedMethodList|length %}

Methods ({{ tplData.stats.methods.numPublic }} public{% if tplData.stats.methods.numPrivate %}, {{ tplData.stats.methods.numPrivate }} private{% endif %})

{% endif %} {% if tplData.sortedPropertyList|length %}

Properties

{% endif %}