{% extends "documentation_layout.html" %} {% block sidebar_content %} {% if !types.is_empty() %}

Types

{% endif %} {% if !constants.is_empty() %}

Constants

{% endif %} {% if !functions.is_empty() %}

Functions

{% endif %} {% endblock %} {% block content %}

{{ module_name }}

{{ documentation|safe }} {% if !types.is_empty() %}

Types

{% for typ in types %}

{{ typ.name }}

{% if typ.opaque %} opaque {% endif %} {% if !typ.source_url.is_empty() %} </> {% endif %}
{% if !typ.deprecation_message.is_empty() %}

Deprecated: {{ typ.deprecation_message }}

{% endif %}
{{ typ.documentation|safe }}
{{ typ.definition }}
{% if !typ.constructors.is_empty() %}

Constructors

    {% for constructor in typ.constructors %}
  • {{ constructor.definition }}
    {{ constructor.documentation|safe }} {% if !constructor.arguments.is_empty() %}

    Arguments

    {% for argument in constructor.arguments %}
    {{ argument.name }}
    {{ argument.doc|safe }}
    {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if !constants.is_empty() %}

Constants

{% for constant in constants %}

{{ constant.name }}

{% if !constant.source_url.is_empty() %} </> {% endif %}
{{ constant.definition }}
{{ constant.documentation|safe }}
{% endfor %}
{% endif %} {% if !functions.is_empty() %}

Functions

{% for function in functions %}

{{ function.name }}

{% if !function.source_url.is_empty() %} </> {% endif %}
{{ function.signature }}
{% if !function.deprecation_message.is_empty() %}

Deprecated: {{ function.deprecation_message }}

{% endif %}
{{ function.documentation|safe }}
{% endfor %}
{% endif %} {% endblock %}