ge: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 7: | Line 7: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
ge(n1, n2, ...) | ge(n1, n2, ...) | ||
</ | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|n1|Number}} | {{param|n1|Number}} | ||
Line 15: | Line 15: | ||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: ge(2,-3)] | [r: ge(2,-3)] | ||
[r: ge(4,3,2)] | [r: ge(4,3,2)] | ||
[r: ge(5,1,1)] | [r: ge(5,1,1)] | ||
</ | </syntaxhighlight> | ||
'''Returns:''' | '''Returns:''' | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
1 | 1 | ||
1 | 1 | ||
1 | 1 | ||
</ | </syntaxhighlight> | ||
|also= | |also= |
Revision as of 18:33, 14 March 2023
ge() Function
This function compares provided numeric values and returns
true(1)
if the first is greater than or equal to the second and the second greater than or equal to the third and so on. If any comparison fails, the function returns false
.Usage
ge(n1, n2, ...)
Parameters
n1
- Numbern2+
- Number
Example
[r: ge(2,-3)]
[r: ge(4,3,2)]
[r: ge(5,1,1)]
Returns:
1
1
1