Assignment Operators

Operators that assign values to operands

The assignment operators perform an assignment to the first, or left-hand 
side, operand based on the value of the second, or right-hand side, 
operand. Most of the assignment operators are combination operators, in 
that they first perform a mathematical or bitwise operation on the two 
operands, then assign the result to the left-hand side operand.

KeyPgOpAssignmentOperator =[>] (Assignment)
	Assigns the value of one operand to the other.
KeyPgOpCombineConcatOperator &= (Concatenate And Assign)
	Assigns the value of a concatenation between two operands.
KeyPgOpCombineAddOperator += (Add And Assign)
	Assigns the value of an addition between two operands.
KeyPgOpCombineSubOperator -= (Subtract And Assign)
	Assigns the value of a subtraction between two operands.
KeyPgOpCombineMultiplyOperator *= (Multiply And Assign)
	Assigns the value of a multiplication between two operands.
KeyPgOpCombineDivideOperator /= (Divide And Assign)
	Assigns the value of a division between two operands.
KeyPgOpCombineIntegerDivideOperator \= (Integer Divide And Assign)
	Assigns the value of an integer divide between two operands.
KeyPgOpCombineExponentiateOperator ^= (Exponentiate And Assign)
	Assigns the value of a exponentiation between two operands.
KeyPgOpLetOperator Let (Assignment)
	Assigns the value of one user defined type to another.
KeyPgOpLetlistOperator Let() (Assignment)
	Assigns the fields of a user defined type to a list of variables.
KeyPgOpCombineModulusOperator Mod= (Modulus And Assign)
	Assigns the value of a modulus between two operands.
KeyPgOpCombineAndOperator And= (Conjunction And Assign)
	Assigns the value of a bitwise conjunction between two operands.
KeyPgOpCombineEqvOperator Eqv= (Equivalence And Assign)
	Assigns the value of a bitwise equivalence between two operands.
KeyPgOpCombineImpOperator Imp= (Implication And Assign)
	Assigns the value of a bitwise implication between two operands.
KeyPgOpCombineOrOperator Or= (Inclusive Disjunction And Assign)
	Assigns the value of a bitwise inclusive or between two operands.
KeyPgOpCombineXorOperator Xor= (Exclusive Disjunction And Assign)
	Assigns the value of a bitwise exclusive or between two operands.
KeyPgOpCombineShiftLeftOperator Shl= (Shift Left And Assign)
	Assigns the value of a bitwise shift left of an operand.
KeyPgOpCombineShiftRightOperator Shr= (Shift Right And Assign)
	Assigns the value of a bitwise shift right of an operand.

