1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00
Files
gohugoio-hugo/docs/content/en/functions/uniq.md
2023-05-22 16:47:07 +02:00

294 B

title, description, categories, menu, keywords, signature
title description categories menu keywords signature
uniq Takes in a slice or array and returns a slice with duplicate elements removed.
functions
docs
parent
functions
multilingual
i18n
urls
uniq SET
{{ slice 1 3 2 1 | uniq }} --> [1 3 2]