Back to Hugo

and

docs/content/en/functions/go-template/and.md

0.161.1469 B
Original Source

{{% include "/_common/functions/truthy-falsy.md" %}}

The and function evaluates the arguments from left to right, and returns when the result is determined.

go-html-template
{{ and 1 0 "" }} → 0 (int)
{{ and 1 false 0 }} → false (bool)

{{ and 1 2 3 }} → 3 (int)
{{ and "a" "b" "c" }} → c (string)
{{ and "a" 1 true }} → true (bool)

{{ and false (math.Div 1 0) }} → false (bool)

{{% include "/_common/functions/go-template/text-template.md" %}}