Arithmetic Operators

Operators that can be used in mathematical expressions

The mathematical operators perform mathematical operations with the values 
of their operands and return the results.

KeyPgOpAddOperator + (Add)
	Returns the result of an addition of two operands.
KeyPgOpSubtractOperator - (Subtract)
	Returns the result of a subtraction of two operands.
KeyPgOpMultiplyOperator * (Multiply)
	Returns the result of a multiplication of two operands.
KeyPgOpDivideOperator / (Divide)
	Returns the result of a division of two operands.
KeyPgOpIntegerDivideOperator \ (Integer Divide)
	Returns the result of an integer divide of two operands.
KeyPgOpExponentiateOperator ^ (Exponentiate)
	Returns the result of an exponentiation of two operands.
KeyPgOpModulusOperator Mod (Modulus)
	Returns the result of a modulus of two operands.
KeyPgOpNegateOperator - (Negate)
	Returns the result of a negation of an operand.
KeyPgOpShiftLeftOperator Shl (Shift Left)
	Returns the result of a bitwise shift left of an operand.
KeyPgOpShiftRightOperator Shr (Shift Right)
	Returns the result of a bitwise shift right of an operand.

