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