ne: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
|trusted=false | |trusted=false | ||
|description= | |description= | ||
This functions checks for inequality between consecutive parameters. You can use it for string (case-insensitive) or numeric comparisons but not both at the same time. Passing in a mix of strings and numbers will always return {{code|false}}. Any failed comparison (that is: if any two | This functions checks for inequality between consecutive parameters. You can use it for string (case-insensitive) or numeric comparisons but not both at the same time. Passing in a mix of strings and numbers will always return {{code|false}}. Any failed comparison (that is: if any two neighboring parameters in the list are equal) and the result will be {{code|false}}. | ||
|usage= | |usage= |
Revision as of 19:56, 4 November 2021
ne() Function
This functions checks for inequality between consecutive parameters. You can use it for string (case-insensitive) or numeric comparisons but not both at the same time. Passing in a mix of strings and numbers will always return
false
. Any failed comparison (that is: if any two neighboring parameters in the list are equal) and the result will be false
.Usage
ne(n1, n2, ...)
ne(s1, s2, ...)
Parameters
n1+
- Numbers1+
- String
Example
[r: ne(1, 0)]
[r: ne(1, 1, 0)]
[r: ne(4, 2, 4)]
[h: species = "duck"]
[r: ne(species, "Duck")]
[r: ne(species, "Chicken")]
Returns:
1
0
1
0
1