{% extends "base.html" %} {% block title %}{{ metafunction.title|e }}{% endblock %} {% block content %}

Fn<> {{ metafunction.title|e }}
{{ sections.brief(metafunction) }}

{{ sections.top_box(metafunction) }} {{ sections.params(metafunction) }} {{ sections.tparams(metafunction) }} {{ sections.return_values(metafunction) }} {% if metafunction.internals or metafunction.deprecation_msgs or metafunction.warnings or metafunction.notes or metafunction.akas or not metafunction.body.empty %}

Detailed Description

{% if metafunction.internals %}
Internal:

For internal use only.

{% endif %} {% if metafunction.deprecation_msgs %} {% for msg in metafunction.deprecation_msgs %}
Deprecated.

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if metafunction.warnings %} {% for msg in metafunction.warnings %}
Warning:

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if metafunction.notes %} {% for msg in metafunction.notes %}
Note:

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if metafunction.akas %}
Also known as:

{{ metafunction.akas|join(', ') }}

{% endif %} {{ sections.body(metafunction) }}
{% endif %} {{ sections.see_also(metafunction) }} {{ sections.dox_source(metafunction, in_comment=True) }} {% endblock %}