class
	ARRAYED_STACK [G]

General
	cluster: base.structures.dispenser
	description: "Stacks implemented by resizable arrays"
	create: make

Ancestors
	ARRAYED_LIST [G]
	STACK [G]

Queries
	changeable_comparison_criterion: BOOLEAN
	count: INTEGER
	Extendible: BOOLEAN
	full: BOOLEAN
	has (v: [like item] G): BOOLEAN
	is_empty: BOOLEAN
	is_equal (other: [like Current] ARRAYED_STACK [G]): BOOLEAN
	is_inserted (v: G): BOOLEAN
	item: [like first] G
	linear_representation: ARRAYED_LIST [G]
	object_comparison: BOOLEAN
	occurrences (v: [like item] G): INTEGER
	prunable: BOOLEAN
	readable: BOOLEAN
	writable: BOOLEAN

Commands
	append (s: SEQUENCE [G])
	compare_objects
	compare_references
	copy (other: [like Current] ARRAYED_STACK [G])
	extend (v: [like item] G)
	fill (other: LINEAR [G])
	force (v: [like item] G)
	make (n: INTEGER)
	put (v: [like item] G)
	remove
	replace (v: [like first] G)
	wipe_out