{% 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 }}

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

Constructors

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

Constants

{% for constant in constants %}

{{ constant.name }}

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

Functions

{% for function in functions %}

{{ function.name }}

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