mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
23 lines
591 B
Markdown
23 lines
591 B
Markdown
---
|
|
title: slice
|
|
description: Creates a slice (array) of all passed arguments.
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
keywords: [slice, array, interface]
|
|
signature: ["slice ITEM..."]
|
|
relatedfuncs: []
|
|
---
|
|
|
|
One use case is the concatenation of elements in combination with the [`delimit` function]:
|
|
|
|
{{< code file="slice.html" >}}
|
|
{{ $sliceOfStrings := slice "foo" "bar" "buzz" }}
|
|
<!-- returns the slice [ "foo", "bar", "buzz"] -->
|
|
{{ delimit ($sliceOfStrings) ", " }}
|
|
<!-- returns the string "foo, bar, buzz" -->
|
|
{{< /code >}}
|
|
|
|
|
|
[`delimit` function]: /functions/delimit/
|