|
|
Keywords:
Subrange,
Array,
Enumeration,
Conses,
Char
A component of a hierarchical structure. The first element of an array is zero. Elements of @example array: @example = (' Element 0', ' Element 1', ' Element 2'); References to elements of @example array: $example[0] = Element 0 $example[1] = Element 1 $example[2] = Element 2
The component of an array, subrange, enumeration, set, or other aggregate object.
See array element.
1. (of a list) an object that is the car of one of the conses that comprise the list. 2. (of an array) an object that is stored in the array. 3. (of a sequence) an object that is an element of the list or array that is the sequence. 4. (of a type) an object that is a member of the set of objects designated by the type. 5. (of an input stream character or number (as appropriate to the element type of the stream) that is among the ordered series of objects that can be read from the stream (using read-char or read-byte, as appropriate to the stream). 6. (of an output stream character or number (as appropriate to the element type of the stream) that is among the ordered series of objects that has been or will be written to the stream (using write-char or write-byte, as appropriate to the stream). 7. (of a class generalized instance of the class.
A single member variable of an array of like variables.
In programming, a single item of an Array of items. When used in the context of web pages, refers to a piece of the page, such as an image or other media.
The component of an array, subrange, enumeration, or set.
A specific variable of an array.
A single member of an array. Each element of an array is assigned a unique index value, which is used to locate and manipulate specific elements in an array.
|