summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/collections/SymDiff.md
blob: ea9f201239e0e38e3a93498b187f46de5bba5f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
title: collections.SymDiff
linkTitle: symdiff
description: Returns the symmetric difference of two collections.
categories: [functions]
keywords: []
menu:
  docs:
    parent: functions
function:
  aliases: [symdiff]
  returnType: any
  signatures: [COLLECTION | collections.SymDiff COLLECTION]
relatedFunctions:
  - collections.Complement
  - collections.Intersect
  - collections.SymDiff
  - collections.Union
aliases: [/functions/symdiff]
---

Example:

```go-html-template
{{ slice 1 2 3 | symdiff (slice 3 4) }} → [1 2 4]
```

Also see https://en.wikipedia.org/wiki/Symmetric_difference