mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
32 lines
653 B
Markdown
32 lines
653 B
Markdown
---
|
|
title: compare.Le
|
|
description: Returns the boolean truth of arg1 <= arg2 && arg1 <= arg3.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [le]
|
|
related:
|
|
- functions/compare/Eq
|
|
- functions/compare/Ge
|
|
- functions/compare/Gt
|
|
- functions/compare/Lt
|
|
- functions/compare/Ne
|
|
returnType: bool
|
|
signatures: ['compare.Le ARG1 ARG2 [ARG...]']
|
|
aliases: [/functions/le]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ le 1 1 }} → true
|
|
{{ le 1 2 }} → true
|
|
{{ le 2 1 }} → false
|
|
|
|
{{ le 1 1 1 }} → true
|
|
{{ le 1 1 2 }} → true
|
|
{{ le 1 2 1 }} → true
|
|
{{ le 1 2 2 }} → true
|
|
|
|
{{ le 2 1 1 }} → false
|
|
{{ le 2 1 2 }} → false
|
|
{{ le 2 2 1 }} → false
|
|
```
|