summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/compare/Eq.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/compare/Eq.md')
-rw-r--r--docs/content/en/functions/compare/Eq.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/content/en/functions/compare/Eq.md b/docs/content/en/functions/compare/Eq.md
new file mode 100644
index 000000000..010fc51b3
--- /dev/null
+++ b/docs/content/en/functions/compare/Eq.md
@@ -0,0 +1,32 @@
+---
+title: compare.Eq
+linkTitle: eq
+description: Returns the boolean truth of arg1 == arg2 || arg1 == arg3.
+categories: [functions]
+keywords: []
+menu:
+ docs:
+ parent: functions
+function:
+ aliases: [eq]
+ returnType: bool
+ signatures: ['compare.Eq ARG1 ARG2 [ARG...]']
+relatedFunctions:
+ - compare.Eq
+ - compare.Ge
+ - compare.Gt
+ - compare.Le
+ - compare.Lt
+ - compare.Ne
+aliases: [/functions/eq]
+---
+
+```go-html-template
+{{ eq 1 1 }} → true
+{{ eq 1 2 }} → false
+
+{{ eq 1 1 1 }} → true
+{{ eq 1 1 2 }} → true
+{{ eq 1 2 1 }} → true
+{{ eq 1 2 2 }} → false
+```