class
	ECOM_DECIMAL

General
	cluster: com.Structures
	description: "COM Decimal Structure.  Wrapping COM DECIMAL type"
	create: make_from_double, make_from_pointer, make

Ancestors
	ECOM_STRUCTURE
	NUMERIC

Queries
	infix "-" (other: ECOM_DECIMAL): ECOM_DECIMAL
	infix "+" (other: ECOM_DECIMAL): ECOM_DECIMAL
	infix "^" (other: NUMERIC): NUMERIC
	infix "/" (other: ECOM_DECIMAL): ECOM_DECIMAL
	infix "*" (other: ECOM_DECIMAL): ECOM_DECIMAL
	prefix "-": ECOM_DECIMAL
	prefix "+": ECOM_DECIMAL
	absolute: ECOM_DECIMAL
	ceiled_integer_portion: ECOM_DECIMAL
	divisible (other: ECOM_DECIMAL): BOOLEAN
	exists: BOOLEAN
	exponentiable (other: ECOM_DECIMAL): BOOLEAN
	is_equal (other: [like Current] ECOM_DECIMAL): BOOLEAN
	item: POINTER
	one: ECOM_DECIMAL
	rounded (value: INTEGER): ECOM_DECIMAL
	scale: INTEGER
	shared: BOOLEAN
	structure_size: INTEGER
	to_integer: INTEGER
	truncated_to_double: DOUBLE
	truncated_to_integer_portion: ECOM_DECIMAL
	zero: ECOM_DECIMAL

Commands
	dispose
	initialize
	initialize_with_character (a_character: CHARACTER)
	make
	make_from_double (dbl_value: DOUBLE)
	memory_copy (source_pointer: POINTER; length: INTEGER)
	set_shared
	set_unshared
	set_value (source: [like Current] ECOM_DECIMAL)