Pointer Operators

Operators that work with pointers

The pointer operators provide the ability to retrieve the addresses in 
memory of their operands, and to use, or dereference, that memory.

KeyPgOpVarptrOperator Varptr (Variable Pointer)
	Returns the memory address of a variable.
KeyPgOpStrptrOperator Strptr (String Pointer)
	Returns the memory address of a string's character data.
KeyPgOpProcptrOperator Procptr (Procedure Pointer And Vtable Index)
	Returns the memory address of a procedure.
KeyPgOpAtOperator @ (Address Of)
	Returns the memory address of a variable, object or procedure.
KeyPgOpValueOfOperator * (Value Of)
	Returns a reference to a variable or object at some memory address.

