mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
26 lines
503 B
Markdown
26 lines
503 B
Markdown
|
---
|
||
|
title: collections.Uniq
|
||
|
linkTitle: uniq
|
||
|
description: Takes in a slice or array and returns a slice with duplicate elements removed.
|
||
|
categories: [functions]
|
||
|
keywords: []
|
||
|
menu:
|
||
|
docs:
|
||
|
parent: functions
|
||
|
function:
|
||
|
aliases: [uniq]
|
||
|
returnType: any
|
||
|
signatures: [collections.Uniq COLLECTION]
|
||
|
relatedFunctions:
|
||
|
- collections.Reverse
|
||
|
- collections.Shuffle
|
||
|
- collections.Sort
|
||
|
- collections.Uniq
|
||
|
aliases: [/functions/uniq]
|
||
|
---
|
||
|
|
||
|
|
||
|
```go-html-template
|
||
|
{{ slice 1 3 2 1 | uniq }} → [1 3 2]
|
||
|
```
|