deferred class
	SEQUENCE [G]

General
	cluster: elks
	description: 
		"Finite sequences: structures where existing items are arranged
		and accessed sequentially, and new ones can be added at the end."

Ancestors
	ACTIVE* [G]
	BILINEAR* [G]
	FINITE* [G]

Queries
	after: BOOLEAN
	before: BOOLEAN
	changeable_comparison_criterion: BOOLEAN
	count: INTEGER_32
	exhausted: BOOLEAN
	extendible: BOOLEAN
	for_all (test: FUNCTION [G, BOOLEAN]): BOOLEAN
	full: BOOLEAN
	has (v: [like item] G): BOOLEAN
	index: INTEGER_32
	index_of (v: [like item] G; i: INTEGER_32): INTEGER_32
	is_empty: BOOLEAN
	is_inserted (v: G): BOOLEAN
	item: G
	item_for_iteration: G
	linear_representation: LINEAR [G]
	new_cursor: ITERATION_CURSOR [G]
	object_comparison: BOOLEAN
	occurrences (v: [like item] G): INTEGER_32
	off: BOOLEAN
	prunable: BOOLEAN
	readable: BOOLEAN
	replaceable: BOOLEAN
	there_exists (test: FUNCTION [G, BOOLEAN]): BOOLEAN
	writable: BOOLEAN

Commands
	append (s: SEQUENCE [G])
	back
	compare_objects
	compare_references
	do_all (action: PROCEDURE [G])
	do_if (action: PROCEDURE [G]; test: FUNCTION [G, BOOLEAN])
	extend (v: G)
	fill (other: CONTAINER [G])
	finish
	force (v: [like item] G)
	forth
	prune (v: [like item] G)
	prune_all (v: [like item] G)
	put (v: [like item] G)
	remove
	replace (v: G)
	search (v: [like item] G)
	start
	wipe_out


Generated by ISE EiffelStudio