hugo/docs/content/en/functions/symdiff.md
2023-05-22 16:47:07 +02:00

21 lines
459 B
Markdown

---
title: symdiff
description: "`collections.SymDiff` (alias `symdiff`) returns the symmetric difference of two collections."
categories: [functions]
menu:
docs:
parent: functions
keywords: [collections,intersect,union,complement]
signature: ["COLLECTION | symdiff COLLECTION" ]
---
Example:
```go-html-template
{{ slice 1 2 3 | symdiff (slice 3 4) }}
```
The above will print `[1 2 4]`.
Also see https://en.wikipedia.org/wiki/Symmetric_difference