class
	SPECIAL [T]

General
	cluster: base.kernel
	description: 
		"Special objects: homogeneous sequences of values, 
		used to represent arrays and strings"
	create: make

Ancestors
	ANY

Queries
	all_default (upper: INTEGER): BOOLEAN
	count: INTEGER
	index_of (v: T; start_position: INTEGER): INTEGER
	item (i: INTEGER): T
	resized_area (n: INTEGER): [like Current] SPECIAL [T]
	same_items (other: [like Current] SPECIAL [T]; upper: INTEGER): BOOLEAN

Commands
	clear_all
	put (v: T; i: INTEGER)