summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/collections/Apply.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/collections/Apply.md')
-rw-r--r--docs/content/en/functions/collections/Apply.md10
1 files changed, 2 insertions, 8 deletions
diff --git a/docs/content/en/functions/collections/Apply.md b/docs/content/en/functions/collections/Apply.md
index 4d972b853..abd6fca77 100644
--- a/docs/content/en/functions/collections/Apply.md
+++ b/docs/content/en/functions/collections/Apply.md
@@ -1,18 +1,13 @@
---
title: collections.Apply
-linkTitle: apply
description: Returns a new collection with each element transformed by the given function.
-categories: [functions]
+categories: []
keywords: []
-menu:
- docs:
- parent: functions
-function:
+action:
aliases: [apply]
returnType: '[]any'
signatures: [collections.Apply COLLECTION FUNCTION PARAM...]
relatedFunctions:
- - collections.Apply
- collections.Delimit
- collections.In
- collections.Reverse
@@ -25,7 +20,6 @@ The `apply` function takes three or more arguments, depending on the function be
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.
-
```go-html-template
{{ $s := slice "hello" "world" }}