github.com/rabbouni145/gg@v0.47.1/docs/content/en/functions/uniq.md (about) 1 --- 2 title: uniq 3 linktitle: uniq 4 description: Takes in a slice or array and returns a slice with subsequent duplicate elements removed. 5 godocref: 6 date: 2017-02-01 7 publishdate: 2017-02-01 8 lastmod: 2017-02-01 9 categories: [functions] 10 menu: 11 docs: 12 parent: "functions" 13 keywords: [multilingual,i18n,urls] 14 signature: ["uniq SET"] 15 workson: [] 16 hugoversion: 17 relatedfuncs: [] 18 deprecated: false 19 aliases: [] 20 needsexamples: false 21 --- 22 23 ``` 24 {{ uniq (slice 1 2 3 2) }} 25 {{ slice 1 2 3 2 | uniq }} 26 <!-- both return [1 2 3] --> 27 ``` 28 29 30 31