values Twig Filter
The values filter gets just the values of an array without any specific keys.
This filter is unique to Aptuitiv. It is not part of the core Twig functionality.
{% set stuff = {'foo': 'Foo', 'bar': 'Bar'} %}
{% set myValues = stuff|values %}
{# myValues now contains the following array: ['Foo', 'Bar'] #}