Converting Data Types

Operators and procedures that convert between different types.

#GENERICGeneric conversions
	Operators to convert between arbitrary types.
#INTEGRALConversions to integral types
	Operators to convert to integral types.
#FLOATINGConversions to floating-point types
	Operators to convert to floating-point types.
#STRINGConversions to/from string types
	Operators to convert top an from string types.
#BOOLEANConversion to boolean types
	Operators to convert to boolean types.

GENERICGeneric conversions
	KeyPgCastCast and KeyPgCptrCPtr
		Converts expressions between different types.

INTEGRALConversions to integral types
	KeyPgCbyteCByte and KeyPgCubyteCUByte
		Converts numeric expressions to 8-bit values.
	KeyPgCshortCShort and KeyPgCushortCUShort
		Converts numeric expressions to 16-bit values.
	KeyPgClngCLng and KeyPgCulngCULng
		Converts numeric expressions to 32-bit values.
	KeyPgCintCInt and KeyPgCuintCUInt
		Converts numeric expressions to 32-bit or 64-bit values.
	KeyPgClngintCLngInt and KeyPgCulngintCULngInt
		Converts numeric expressions to 64-bit values.
	KeyPgCsignCSign
		Converts a numeric expression to a signed-type value.
	KeyPgCunsgCUnsg
		Converts a numeric expression to an unsigned-type value.
FLOATINGConversions to floating-point types
	KeyPgCsngCSng and KeyPgCdblCDbl
		Converts a numeric or string expression to floating-point values.

STRINGConversions to/from string types
	KeyPgStrStr and KeyPgWstrWStr
		Converts numeric expressions or booleans to their string 
		representation.
	KeyPgValVal
		Converts a numeric string expression to a floating-point value.
	KeyPgValintValInt and KeyPgValuintValUInt
		Converts numeric string expressions to integer values.
	KeyPgVallngValLng and KeyPgValulngValULng
		Converts numeric string expressions to long values.

BOOLEANConversion to boolean types
	KeyPgCboolCBool
		Converts a numeric or string expression to a boolean value.

