Returns the smaller of a pair of numbers.
$minof(number1,number2)
| number1 | a number or an expression that evaluates to a number |
| number2 | a number or an expression that evaluates to a number |
The value returned by $minof has the same number of decimal places as the number that is returned.
The function returns the larger of a pair of numbers.
if event.eventname = "down"
let IndexPtr = $minof(IndexPtr+1, ArrayLen)
else
... other commands ...
endif
Modifies an array index, without letting the index exceed the specified number.