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

#define {{ macro.title|e }}
{{ sections.brief(macro) }}

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

Detailed Description

{% if macro.internals %}
Internal:

For internal use only.

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

{{ msg|transtext(False) }}

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

{{ msg|transtext(False) }}

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

{{ msg|transtext(False) }}

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

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

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