compare.Ne
Reports whether the first argument is not equal to any of the subsequent arguments.
- Syntax
- compare.Ne ARG1 ARG2 [ARG...]
- Returns
- bool
- Alias
- ne
Usage
The compare.Ne function reports whether the first argument is not equal to any of the subsequent arguments. You can also use this function to compare strings, boolean values, dates, and other comparable data types.
Examples
{{ compare.Ne 1 1 }} → false
{{ compare.Ne 1 2 }} → true
{{ compare.Ne 1 1 1 }} → false
{{ compare.Ne 1 1 2 }} → false
{{ compare.Ne 1 2 1 }} → false
{{ compare.Ne 1 2 2 }} → trueComparing other data types:
{{ compare.Ne "ab" "a" }} → true
{{ compare.Ne time.Now (time.AsTime "1964-12-30") }} → true
{{ compare.Ne true false }} → trueLast updated:
September 16, 2026
:
content: Draft standard for function and method pages (9a554d1fe)
Improve this page