Memory Operators

Operators that work with memory

The memory operators provide a way to dynamically allocate and deallocate 
variables and objects.

KeyPgOpNewOperator New Expression
	Allocates memory for and constructs objects.
	KeyPgOpNewOverloadOperator New Overload
		Overloads memory allocation process of Operator New Expression when 
		applying to UDT.
KeyPgOpPlacementNewOperator Placement New
	Constructs objects at a specified memory location.
KeyPgOpDeleteOperator Delete Statement
	Destroys and deallocates memory for objects.
	KeyPgOpDeleteOverloadOperator Delete Overload
		Overloads memory deallocation process of Operator Delete Statement 
		when applying to UDT.

