mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
459 B
459 B
title | description | categories | menu | keywords | signature | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
symdiff | `collections.SymDiff` (alias `symdiff`) returns the symmetric difference of two collections. |
|
|
|
|
Example:
{{ slice 1 2 3 | symdiff (slice 3 4) }}
The above will print [1 2 4]
.