| Class | Description |
|---|---|
| AndFunction |
Simple 'and (&&)' operator.
Usage: left right and |
| BinAndFunction |
Simple 'binary and (&)' operator.
Usage: left right & |
| BinOrFunction |
Simple 'binary or (|)' operator.
Usage: left right | |
| DifferentFromFunction |
Simple 'different from' function.
Usage: left right !=Returns 1.0 if true. |
| EqualsFunction |
Simple 'equals' function.
Usage: left right ==Returns 1.0 if true. |
| GetTypeFunction |
Gets type of topmost element: 0 (numeric), 1 (string) or 2 (literal)
Usage: element type |
| GreaterEqualsFunction |
Simple 'greater equals' function.
Usage: left right <=Returns 1.0 if true. |
| GreaterThanFunction |
Simple 'greater than' function.
Usage: left right <Returns 1.0 if true. |
| IfFunction |
This class provides an implementation of the if/else statement.
Usage: if [condition] then [code] else [code] endelse is optional. |
| IsArrayFunction |
Simple 'is array' test.
Usage: element isArray |
| IsLiteralFunction |
Simple 'is literal' test.
Usage: element isLiteral |
| IsNumericFunction |
Simple 'is numeric' test.
Usage: element isNumeric |
| IsStringFunction |
Simple 'is string' test.
Usage: element isString |
| LowerEqualsFunction |
Simple 'lower equals' function.
Usage: left right >=Returns 1.0 if true. |
| LowerThanFunction |
Simple 'lower than' function.
Usage: left right >Returns 1.0 if true. |
| NotFunction |
Simple 'not (!)' operator.
Usage: left not |
| OrFunction |
Simple 'Or (||)' operator.
Usage: left right or |
| SameFunction |
Tests if two objects are the same.
|
| SameTypeFunction |
Tests the type of two given elements.
Usage: element element sameType |
| XorFunction |
Simple 'xor (^)' operator.
Usage: left right xor |
Copyright ? 2002 Romain Guy.