mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Uniform spacing across all filter examples
This commit is contained in:
parent
2164573864
commit
95761ea920
1 changed files with 4 additions and 4 deletions
|
@ -189,7 +189,7 @@ All these functions return a unique set from sets or lists.
|
|||
|
||||
To get a unique set from a list::
|
||||
|
||||
{{ list1 |unique }}
|
||||
{{ list1 | unique }}
|
||||
|
||||
To get a union of two lists::
|
||||
|
||||
|
@ -197,15 +197,15 @@ To get a union of two lists::
|
|||
|
||||
To get the intersection of 2 lists (unique list of all items in both)::
|
||||
|
||||
{{ list1 |intersect(list2)}}
|
||||
{{ list1 | intersect(list2) }}
|
||||
|
||||
To get the difference of 2 lists (items in 1 that don't exist in 2)::
|
||||
|
||||
{{ list1 |difference(list2)}}
|
||||
{{ list1 | difference(list2) }}
|
||||
|
||||
To get the symmetric difference of 2 lists (items exclusive to each list)::
|
||||
|
||||
{{ list1 |symmetric_difference(list2)}}
|
||||
{{ list1 | symmetric_difference(list2) }}
|
||||
|
||||
.. _other_useful_filters:
|
||||
|
||||
|
|
Loading…
Reference in a new issue