Back to Hugo

collections.Slice

docs/content/en/functions/collections/Slice.md

0.161.1144 B
Original Source
go-html-template
{{ $s := slice "a" "b" "c" }}
{{ $s }} → [a b c]

To create an empty slice:

go-html-template
{{ $s := slice }}