class
	ARRAYED_QUEUE [G]

General
	cluster: base.structures.dispenser
	description: "Unbounded queues, implemented by resizable arrays"
	create: make

Ancestors
	ARRAY [G]
	QUEUE [G]

Queries
	changeable_comparison_criterion: BOOLEAN
	count: INTEGER
	extendible: BOOLEAN
	full: BOOLEAN
	has (v: [like item] G): BOOLEAN
	index_set: INTEGER_INTERVAL
	is_empty: BOOLEAN
	is_equal (other: [like Current] ARRAYED_QUEUE [G]): BOOLEAN
	is_inserted (v: G): BOOLEAN
	item: G
	linear_representation: ARRAYED_LIST [G]
	object_comparison: BOOLEAN
	occurrences (v: G): INTEGER
	off: BOOLEAN
	prunable: BOOLEAN
	readable: BOOLEAN
	writable: BOOLEAN

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

Constraints
	not full
	extendible
	prunable
	empty means storage empty