 |
ALPHA-VISION® Compare Operations: IsGtEq
|
IsGtEq
SUMMARY
IsGtEq - compares arguments from the left to the right for
GREATER THAN OR EQUAL:
SYNTAX
IsGtEq(
<arg1, arg2, ...>);
ARGUMENTS
- arg1, argN (type:any)
-
IsGtEq can work on arbitrary arguments.
If the arguments are of different type the result is unknown.
DESCRIPTION
Stack
- Missing arguments are taken from the stack.(and removed from there).
- The result is pushed onto the stack.
Effect
IsGtEq compares arguments from the left to the right for
GREATER THAN OR EQUAL:
arg1 >= arg2 >= arg3 >= ... >= argN
EXAMPLES
//Stack before (1 Element):
//2
IsGtEq(10,,2);
//Stack afterwards: (1 Element):
//true
//Stack before (2 Elements):
//10
//10
IsGtEq(,2,);
//Stack afterwards: (1 Element):
//false
Syntax Notation
- [aaa]
- aaa is optional (zero or one occurences)
- (aaa|bbb)
- aaa exclusive or bbb
- (aaa)*
- aaa may occur indefinitely often or may be omitted
- (aaa)+
- aaa may occur indefinitely often but at least once
- (aaa)m..n
- aaa may occur from m to n times