mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
24 lines
575 B
Markdown
24 lines
575 B
Markdown
---
|
|
title: collections.SymDiff
|
|
description: Returns the symmetric difference of two collections.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [symdiff]
|
|
related:
|
|
- functions/collections/Complement
|
|
- functions/collections/Intersect
|
|
- functions/collections/SymDiff
|
|
- functions/collections/Union
|
|
returnType: any
|
|
signatures: [COLLECTION | collections.SymDiff COLLECTION]
|
|
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>.
|