Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
246689c2
Commit
246689c2
authored
Nov 19, 2013
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added version added + union, diff and sym_diff filters
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
parent
79145b6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
docsite/rst/playbooks_variables.rst
+15
-4
No files found.
docsite/rst/playbooks_variables.rst
View file @
246689c2
...
...
@@ -171,17 +171,28 @@ The variable value will be used as is, but the template evaluation will raise an
Set Theory Filters
--------------------
These mostly deal with set (lists), no filter for union as this already works::
All these functions return a unique set from sets or lists.
.. versionadded:: 1.4
{{ list1 + list2 }}
To get a unique set from a list::
{{ list1 |unique }}
To get a union of two lists::
{{ list1 | union(list2) }}
To get the intersection of 2 lists (unique list of all items in both)::
{{ list1 |intersect(list2)}}
To get
a unique set from a list
::
To get
the difference of 2 lists (items in 1 that don't exist in 2)
::
{{ list1 |unique }}
{{ list1 |difference(list2)}}
To get the symetric difference of 2 lists (items exclusive to each list)::
{{ list1 |symetric_difference(list2)}}
.. _other_useful_filters:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment