]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/doc/filters/sort.rst
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / doc / filters / sort.rst
1 ``sort``
2 ========
3
4 The ``sort`` filter sorts an array:
5
6 .. code-block:: jinja
7
8 {% for user in users|sort %}
9 ...
10 {% endfor %}
11
12 .. note::
13
14 Internally, Twig uses the PHP `asort`_ function to maintain index
15 association.
16
17 .. _`asort`: http://php.net/asort