
|
AbsComment
|
'Returns the absolute value of the argument'
|

|
AbsFunctionName
|
'abs'
|

|
DivComment
|
'Returns the value of the first argument integer divided (i.e., '+'fractions are dropped) by each of the subsequent arguments '+'(arg0 div arg1 div arg2...)'
|

|
DivFunctionName
|
'div'
|

|
DivideComment
|
'Returns the value of the first argument divided by each of '+'the subsequent arguments (arg0 / arg1 / arg2...)'
|

|
DivideFunctionName
|
'/'
|

|
ExpComment
|
'Returns the value of e raised to the power of <numeric-expression>, '+'where e is the base of the natural logarithms'
|

|
ExpFunctionName
|
'exp'
|

|
ExptComment
|
'Returns the value of the first argument raised to the power of '+'the second argument'
|

|
ExptFunctionName
|
'**'
|

|
FloatComment
|
'Returns the <numeric-argument> converted to type float'
|

|
FloatFunctionName
|
'float'
|

|
IntegerComment
|
'Returns the <numeric-argument> converted to type integer'
|

|
IntegerFunctionName
|
'integer'
|

|
Log10Comment
|
'Returns the log base 10 of the <numeric-expression>'
|

|
Log10FunctionName
|
'log10'
|

|
LogComment
|
'Returns the natural log of the <numeric-expression>'
|

|
LogFunctionName
|
'log'
|

|
MaxComment
|
'Returns the value of the maximum or largest argument'
|

|
MaxFunctionName
|
'max'
|

|
MinComment
|
'Returns the value of the minimum or smallest argument'
|

|
MinFunctionName
|
'min'
|

|
MinusComment
|
'Returns the value of the first argument minus each of '+'the subsequent arguments (arg0 - arg1 - arg2...)'
|

|
MinusFunctionName
|
'-'
|

|
ModComment
|
'Returns the value of the first argument MOD the second argument'
|

|
ModFunctionName
|
'mod'
|

|
PiComment
|
'Returns the value of PI'
|

|
PiFunctionName
|
'PI'
|

|
PlusComment
|
'Returns a value that is the sum of all the arguments'
|

|
PlusFunctionName
|
'+'
|

|
RandomComment
|
'Returns a random number between <from-integer-expression> and '+'<to-integer-expression>. If only one argument is specified, '+'a number between 0 and the <to-integer-expression> is returned. If NO '+'arguments are specified, a number between 0 and 65535 is returned'
|

|
RandomFunctionName
|
'random'
|

|
RandomizeFunctionComment
|
'Sets the random number generator seed. If no argument '+'is given, the seed is set randomly from the system clock'
|

|
RandomizeFunctionName
|
'randomize'
|

|
RoundComment
|
'Returns the <numeric-argument> rounded to the nearest integer'
|

|
RoundFunctionName
|
'round'
|

|
SeedComment
|
'Sets the random number generator seed to the argument'
|

|
SeedFunctionName
|
'seed'
|

|
SqrtComment
|
'Returns the square root of the <numeric-expression>'
|

|
SqrtFunctionName
|
'sqrt'
|

|
TimesComment
|
'Returns a value that is the product of all the arguments'
|

|
TimesFunctionName
|
'*'
|