class
	ARRAYED_SET [G]

General
	cluster: base.structures.set
	description: "Sets represented as arrayed lists"
	create: make

Ancestors
	ARRAYED_LIST [G]
	LINEAR_SUBSET [G]

Queries
	after: BOOLEAN
	before: BOOLEAN
	changeable_comparison_criterion: BOOLEAN
	count: INTEGER
	disjoint (other: TRAVERSABLE_SUBSET [G]): BOOLEAN
	duplicate (n: INTEGER): [like Current] ARRAYED_SET [G]
	Extendible: BOOLEAN
	has (v: [like item] G): BOOLEAN
	index: INTEGER
	is_empty: BOOLEAN
	is_equal (other: [like Current] ARRAYED_SET [G]): BOOLEAN
	is_inserted (v: G): BOOLEAN
	is_subset (other: TRAVERSABLE_SUBSET [G]): BOOLEAN
	is_superset (other: SUBSET [G]): BOOLEAN
	islast: BOOLEAN
	item: [like first] G
	linear_representation: LINEAR [G]
	object_comparison: BOOLEAN
	off: BOOLEAN
	prunable: BOOLEAN
	valid_index (i: INTEGER): BOOLEAN

Commands
	compare_objects
	compare_references
	copy (other: [like Current] ARRAYED_SET [G])
	extend (v: G)
	fill (other: CONTAINER [G])
	forth
	go_i_th (i: INTEGER)
	intersect (other: TRAVERSABLE_SUBSET [G])
	merge (other: CONTAINER [G])
	move_item (v: G)
	prune (v: [like item] G)
	prune_all (v: [like item] G)
	put (v: G)
	put_left (v: [like item] G)
	remove
	start
	subtract (other: TRAVERSABLE_SUBSET [G])
	symdif (other: TRAVERSABLE_SUBSET [G])
	wipe_out