{% extends "_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 type_info in types %}

{{ type_info.name }}

{% if !type_info.source_url.is_empty() %} </> {% endif %}
{{ type_info.documentation|safe }}
{{ type_info.definition }}
{% if !type_info.constructors.is_empty() %}

Constructors

    {% for constructor in type_info.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 }}
{{ function.documentation|safe }}
{% endfor %}
{% endif %} {% endblock %}