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/shuffle.md
2018-05-04 09:44:59 +02:00

882 B

title, description, godocref, date, publishdate, lastmod, keywords, categories, menu, signature, workson, hugoversion, relatedfuncs, deprecated, draft, aliases
title description godocref date publishdate lastmod keywords categories menu signature workson hugoversion relatedfuncs deprecated draft aliases
shuffle Returns a random permutation of a given array or slice. 2017-02-01 2017-02-01 2017-04-30
ordering
functions
docs
parent
functions
shuffle COLLECTION
seq
false false

{{< code file="shuffle-input.html" >}}

{{ shuffle (seq 1 5) }}
{{ shuffle (slice "foo" "bar" "buzz") }}
{{< /code >}}

This example would return the following:

{{< output file="shuffle-output.html" >}}

2 5 3 1 4
buzz foo bar
{{< /output >}}

This example also makes use of the slice and seq functions.