summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/collections/Complement.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/collections/Complement.md')
-rw-r--r--docs/content/en/functions/collections/Complement.md22
1 files changed, 8 insertions, 14 deletions
diff --git a/docs/content/en/functions/collections/Complement.md b/docs/content/en/functions/collections/Complement.md
index 28b7ded3d..b2a4b42a4 100644
--- a/docs/content/en/functions/collections/Complement.md
+++ b/docs/content/en/functions/collections/Complement.md
@@ -1,21 +1,16 @@
---
title: collections.Complement
-linkTitle: complement
description: Returns the elements of the last collection that are not in any of the others.
-categories: [functions]
+categories: []
keywords: []
-menu:
- docs:
- parent: functions
-function:
+action:
aliases: [complement]
+ related:
+ - functions/collections/Intersect
+ - functions/collections/SymDiff
+ - functions/collections/Union
returnType: any
- signatures: ['collections.Complement COLLECTION [COLLECTION]...']
-relatedFunctions:
- - collections.Complement
- - collections.Intersect
- - collections.SymDiff
- - collections.Union
+ signatures: ['collections.Complement COLLECTION [COLLECTION...]']
aliases: [/functions/complement]
---
@@ -35,7 +30,6 @@ Make your code simpler to understand by using a [chained pipeline]:
[chained pipeline]: https://pkg.go.dev/text/template#hdr-Pipelines
{{% /note %}}
-
```go-html-template
{{ $c3 | complement $c1 $c2 }} → [1 2]
```
@@ -65,7 +59,7 @@ To list everything except blog articles (`blog`) and frequently asked questions
Although the example above demonstrates the `complement` function, you could use the [`where`] function as well:
[`where`]: /functions/collections/where
-{{% /note %}}
+{{% /note %}}
```go-html-template
{{ range where site.RegularPages "Type" "not in" (slice "blog" "faqs") }}