A list is an ordered sequence of values.
class base readonly list[value element type]
implement immutable list[element type] slice(nonnegative begin, nonnegative end)
implement immutable list[element type] skip(nonnegative count)
Declaration: base readonly list
Announcements: base readonly list
Direct supertypes: list
Wrapper of an array that implements on-demand resizing and copy-on-write semantics.
The same list_state can be shared by multiple instances of base_readonly_lists.
protected class list state[value element type]
Declaration: list state
Use: base readonly list / base readonly list / list state / list state / list state / list state / base list / base list / base immutable list / base immutable list / base immutable list
import ideal • machine • elements • array
Specifies whether this instance of list_state is writable.
A single non-writable copy can be shared among multiple instances of base_readonly_list.
var boolean writable
Declaration: writable
Specifies how many elements are stored in this list_state.
The size is less or equal to the_elements.size.
var nonnegative size
Declaration: size
Use: base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list / base readonly list
Construct a list state with an array of specified size.
overload list state(nonnegative initial size)
Declaration: constructor
Construct a list state with an array of default size.
overload list state()
Declaration: constructor
Construct a list state from a given array of elements.
Assumes noone mutates the elements.
overload list state(array[element type] immutable elements)
Declaration: constructor
Declaration: reserve
Use: base readonly list
Insert elements at the specified index.
void insert all(nonnegative index, readonly list[element type] new elements)
Declaration: insert all
Declaration: insert
Use: base readonly list
Helper method used to create space in the middle of an array.
private void reserve and move(nonnegative index, nonnegative extra size)
Declaration: reserve and move
Declaration: clear
Declaration: copy
protected overload base readonly list()
Declaration: constructor
Declaration: constructor
Declaration: size
Direct overrides: size
Declaration: is empty
Direct overrides: is empty
Specifies whether the collection has more than zero elements.
Shortcut for !is_empty.
implement boolean is not empty
Declaration: is not empty
Direct overrides: is not empty
Declaration: first
Direct overrides: first
Declaration: last
Direct overrides: last
Read the list's element for the specified index.
implement implicit readonly reference[element type] get(nonnegative index) pure
Declaration: constructor
Direct overrides: list
Enumerates elements in some collection-defined order.
This method returns a snapshot of the collection state, so subsequent mutations
of the collection do not cause changes in the returned list.
implement immutable list[element type] elements()
Declaration: elements
Direct overrides: elements
Declaration: frozen copy
Direct overrides: list
Directly overriden by: base immutable list
Returns an immutable sublist with the given the starting and ending indices.
The starting index is inclusive, the ending is exclusive.
Declaration: slice
Direct overrides: list
Skips over the specified count of elements and returns an immutable slice
that begins with count and ends with the end of this list.
Declaration: skip
Direct overrides: list
Check whether the list has at least one element that satisfies the predicate.
implement boolean has(predicate[element type] the predicate) pure
Declaration: has
Direct overrides: list