Mathematics
| Operator | Summary | 
|---|---|
| abs | Returns a positive value of either the input or the first parameter. | 
| ceil | Returns the next highest integer value of input or parameter. | 
| dec | Returns input or parameter decremented by one. | 
| div | Divides input or first parameter by the remaining parameters. | 
| floor | Returns the next lowest integer value of input or parameter. | 
| inc | Increments either the input or the first parameter with one. | 
| max | Returns the largest value of all parameters. | 
| min | Returns the smallest value of all parameters. | 
| mod | Returns the modulo of two parameters. | 
| mul | Multiplies all parameters and returns the result. | 
| rand | Returns a random integer. | 
| round | Returns a rounded version of the input or a parameter value. | 
| sub | Subtracts all remaining parameters from the first parameter. | 
| sum | Returns the sum of all parameters. | 
Balazs Halasy (09/03/2005 1:00 pm)
Balazs Halasy (09/03/2005 1:12 pm)
Comments
There are no comments.