mirror of https://github.com/Qiskit/qiskit-aer.git
42 lines
703 B
ReStructuredText
42 lines
703 B
ReStructuredText
{% if referencefile %}
|
|
.. include:: {{ referencefile }}
|
|
{% endif %}
|
|
|
|
{{ objname }}
|
|
{{ underline }}
|
|
|
|
.. automodule:: {{ fullname }}
|
|
|
|
{% block functions %}
|
|
{% if functions %}
|
|
.. rubric:: Functions
|
|
|
|
.. autosummary::
|
|
{% for item in functions %}
|
|
{{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block classes %}
|
|
{% if classes %}
|
|
.. rubric:: Classes
|
|
|
|
.. autosummary::
|
|
{% for item in classes %}
|
|
{{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block exceptions %}
|
|
{% if exceptions %}
|
|
.. rubric:: Exceptions
|
|
|
|
.. autosummary::
|
|
{% for item in exceptions %}
|
|
{{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|