mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-22 21:42:50 +02:00
25 lines
525 B
Markdown
25 lines
525 B
Markdown
---
|
|
title: collections.SymDiff
|
|
description: Returns the symmetric difference of two collections.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [symdiff]
|
|
returnType: any
|
|
signatures: [COLLECTION | collections.SymDiff COLLECTION]
|
|
related:
|
|
- 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>.
|