class
	TUPLE

General
	cluster: base.kernel
	description: "Implementation of TUPLE"
	create: make

Ancestors
	ARRAY [G]

Queries
	infix "@" (i: INTEGER): ANY
	additional_space: INTEGER
	all_default: BOOLEAN
	area: SPECIAL [ANY]
	arrayed: ARRAY [ANY]
	boolean_arrayed: ARRAY [BOOLEAN]
	boolean_item (index: INTEGER): BOOLEAN
	capacity: INTEGER
	changeable_comparison_criterion: BOOLEAN
	character_arrayed: ARRAY [CHARACTER]
	character_item (index: INTEGER): CHARACTER
	convertible_to_double: BOOLEAN
	convertible_to_real: BOOLEAN
	count: INTEGER
	double_arrayed: ARRAY [DOUBLE]
	double_item (index: INTEGER): DOUBLE
	entry (i: INTEGER): ANY
	extendible: BOOLEAN
	full: BOOLEAN
	Growth_percentage: INTEGER
	has (v: ANY): BOOLEAN
	index_set: INTEGER_INTERVAL
	integer_arrayed: ARRAY [INTEGER]
	integer_item (index: INTEGER): INTEGER
	is_boolean_item (index: INTEGER): BOOLEAN
	is_character_item (index: INTEGER): BOOLEAN
	is_double_item (index: INTEGER): BOOLEAN
	is_empty: BOOLEAN
	is_equal (other: [like Current] TUPLE): BOOLEAN
	is_inserted (v: ANY): BOOLEAN
	is_integer_item (index: INTEGER): BOOLEAN
	is_numeric_item (index: INTEGER): BOOLEAN
	is_pointer_item (index: INTEGER): BOOLEAN
	is_real_item (index: INTEGER): BOOLEAN
	is_reference_item (index: INTEGER): BOOLEAN
	is_uniform: BOOLEAN
	is_uniform_boolean: BOOLEAN
	is_uniform_character: BOOLEAN
	is_uniform_double: BOOLEAN
	is_uniform_integer: BOOLEAN
	is_uniform_pointer: BOOLEAN
	is_uniform_real: BOOLEAN
	is_uniform_reference: BOOLEAN
	item (i: INTEGER): ANY
	linear_representation: LINEAR [ANY]
	lower: INTEGER
	Minimal_increase: INTEGER
	object_comparison: BOOLEAN
	occurrences (v: ANY): INTEGER
	pointer_arrayed: ARRAY [POINTER]
	pointer_item (index: INTEGER): POINTER
	prunable: BOOLEAN
	real_arrayed: ARRAY [REAL]
	real_item (index: INTEGER): REAL
	resizable: BOOLEAN
	same_items (other: [like Current] TUPLE): BOOLEAN
	string_arrayed: ARRAY [STRING]
	subarray (start_pos, end_pos: INTEGER): [like Current] TUPLE
	to_c: ANY
	upper: INTEGER
	valid_index (i: INTEGER): BOOLEAN
	valid_index_set: BOOLEAN

Commands
	array_make (min_index, max_index: INTEGER)
	automatic_grow
	clear_all
	compare_objects
	compare_references
	copy (other: [like Current] TUPLE)
	discard_items
	enter (v: [like item] ANY; i: INTEGER)
	fill (other: CONTAINER [ANY])
	force (v: [like item] ANY; i: INTEGER)
	grow (i: INTEGER)
	make
	make_from_array (a: ARRAY [ANY])
	prune_all (v: ANY)
	put (v: [like item] ANY; i: INTEGER)
	resize (min_index, max_index: INTEGER)
	subcopy (other: [like Current] TUPLE; start_pos, end_pos, index_pos: INTEGER)