collections.Apply
Syntax
collections.Apply COLLECTION FUNCTION PARAM...
Returns
[]any
Alias
apply
apply
函数接受三个或更多参数,具体取决于应用于集合元素的函数。
第一个参数是集合本身,第二个参数是函数名,剩下的参数将传递给函数,使用字符串 "."
表示集合元素。
{{ $s := slice "hello" "world" }}
{{ $s = apply $s "strings.FirstUpper" "." }}
{{ $s }} → [Hello World]
{{ $s = apply $s "strings.Replace" "." "l" "_" }}
{{ $s }} → [He__o Wor_d]