{# Handle multiple signatures for overloads #}
{% for entry in group.entries %}
{% if group.type == 'UDO' %}
{# Functional Form Only #}
{% if entry.returns %}
{% for ret in entry.returns %}{{ ret.name or '?' }}{% if not loop.last %}, {% endif %}{% endfor %} =
{% elif entry.outputs %}
{{ entry.outputs }} =
{% endif %}
{{ entry.name }}({% for param in entry.params %}{{ param.name or '?' }}{% if not loop.last %}, {% endif %}{% endfor %})