class
	ARRAYED_STACK [G]

General
	cluster: elks
	description: "Stacks implemented by resizable arrays"
	create: make, make_from_iterable, make_filled

Ancestors
	ARRAYED_LIST [G]
	STACK* [G]

Queries
	changeable_comparison_criterion: BOOLEAN
	count: INTEGER_32
	extendible: BOOLEAN
	full: BOOLEAN
	has (v: [like item] G): BOOLEAN
	index: INTEGER_32
	is_empty: BOOLEAN
	is_equal (other: [like Current] ARRAYED_STACK [G]): BOOLEAN
	is_inserted (v: G): BOOLEAN
	item: G
	linear_representation: ARRAYED_LIST [G]
	new_cursor: ARRAYED_LIST_ITERATION_CURSOR [G]
	object_comparison: BOOLEAN
	occurrences (v: [like item] G): INTEGER_32
	off: BOOLEAN
	prunable: BOOLEAN
	readable: BOOLEAN
	replaceable: BOOLEAN
	valid_index (i: INTEGER_32): 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_32)
	put (v: [like item] G)
	remove
	replace (v: [like first] G)
	wipe_out


Generated by ISE EiffelStudio