hugo/docs/content/en/functions/collections/Apply.md
2023-12-04 15:24:01 +01:00

954 B

title description categories keywords action relatedFunctions aliases
collections.Apply Returns a new collection with each element transformed by the given function.
aliases returnType signatures
apply
[]any
collections.Apply COLLECTION FUNCTION PARAM...
collections.Delimit
collections.In
collections.Reverse
collections.Seq
collections.Slice
/functions/apply

The apply function takes three or more arguments, depending on the function being applied to the collection elements.

The first argument is the collection itself, the second argument is the function name, and the remaining arguments are passed to the function, with the string "." representing the collection element.

{{ $s := slice "hello" "world" }}

{{ $s = apply $s "strings.FirstUpper" "." }}
{{ $s }} → [Hello World]

{{ $s = apply $s "strings.Replace" "." "l" "_" }}
{{ $s }} →  [He__o Wor_d]