returns TRUE if the specified variable is an array. Returns FALSE otherwise.
Tests whether the specified variable is array.
Usage example:
{% if value is not array %}
<input type="hidden" name="{{ name }}" value="{{ value }}"/>
{% else %}
{% for item in value %}
<input type="hidden" name="{{ name }}" value="{{ item }}"/>
{% endfor %}
{% endif %}