equals: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Bubblobill (talk | contribs) m (added logical category) |
||
Line 37: | Line 37: | ||
[[Category:Macro Function]] | [[Category:Macro Function]] | ||
[[Category:Mathematical Function]] | [[Category:Mathematical Function]] | ||
[[Category:Logical Function]] | |||
[[Category:String Function]] | [[Category:String Function]] |
Revision as of 11:39, 9 February 2021
equals() Function
This functions checks for equality between all of the passed in values. 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
.Usage
equals(n1, n2, ...)
equals(s1, s2, ...)
Parameters
n1+
- Numbers1+
- String
Example
[r: equals(1, 1)]
[r: equals(1, 1, 0)]
[h: species = "duck"]
[r: equals(species, "Duck")]
[r: equals(species, "Chicken")]
Returns:
1
0
1
0